mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-25 09:33:24 +01:00
10 lines
180 B
Go
10 lines
180 B
Go
|
//go:build !linux
|
||
|
// +build !linux
|
||
|
|
||
|
package iface
|
||
|
|
||
|
// WireguardModuleIsLoaded check if we can load wireguard mod (linux only)
|
||
|
func WireguardModuleIsLoaded() bool {
|
||
|
return false
|
||
|
}
|