Files
netbird/client/internal/ebpf/manager_nonlinux.go
2023-08-16 15:25:14 +02:00

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