mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-29 11:33:48 +01:00
11 lines
266 B
Go
11 lines
266 B
Go
|
//go:build !linux || android
|
||
|
|
||
|
package ebpf
|
||
|
|
||
|
import "github.com/netbirdio/netbird/client/internal/ebpf/manager"
|
||
|
|
||
|
// GetEbpfManagerInstance return error because ebpf is not supported on all os
|
||
|
func GetEbpfManagerInstance() manager.Manager {
|
||
|
panic("unsupported os")
|
||
|
}
|