mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-18 00:06:38 +00:00
9 lines
190 B
Go
9 lines
190 B
Go
//go:build !linux || android
|
|
|
|
package ebpf
|
|
|
|
// GetEbpfManagerInstance return error because ebpf is not supported on all os
|
|
func GetEbpfManagerInstance() Manager {
|
|
panic("unsupported os")
|
|
}
|