infra/netbird/client/internal/ebpf/instantiater_nonlinux.go
2025-04-21 09:31:22 +00:00

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")
}