12 lines
305 B
Go
12 lines
305 B
Go
//go:build !windows && !darwin
|
|
|
|
package winapi
|
|
|
|
// GetWifiConnection returns an empty WifiConnection stub for other systems
|
|
func GetWifiConnection() WifiConnection {
|
|
return WifiConnection{}
|
|
}
|
|
|
|
// RequestLocationAccess requests Location permission (stub for other systems)
|
|
func RequestLocationAccess() {}
|