9 lines
193 B
Go
9 lines
193 B
Go
//go:build !windows && !darwin
|
|
|
|
package winapi
|
|
|
|
// GetWifiConnection returns an empty WifiConnection stub for other systems
|
|
func GetWifiConnection() WifiConnection {
|
|
return WifiConnection{}
|
|
}
|