mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-16 07:16:38 +00:00
10 lines
199 B
Go
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
|
|
}
|