Files
netbird/iface/module.go
2023-04-04 16:50:35 +02:00

10 lines
199 B
Go

//go:build !linux || android
// +build !linux android
package iface
// WireGuardModuleIsLoaded check if we can load WireGuard mod (linux only)
func WireGuardModuleIsLoaded() bool {
return false
}