mirror of
https://github.com/netbirdio/netbird.git
synced 2025-02-05 21:09:36 +01:00
9 lines
189 B
Go
9 lines
189 B
Go
//go:build (!linux && !freebsd) || android
|
|
|
|
package device
|
|
|
|
// WireGuardModuleIsLoaded check if we can load WireGuard mod (linux only)
|
|
func WireGuardModuleIsLoaded() bool {
|
|
return false
|
|
}
|