mirror of
https://github.com/netbirdio/netbird.git
synced 2024-12-25 08:09:30 +01:00
891ba277b1
Initial modification to support mobile client Export necessary interfaces for Android framework
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
|
|
}
|