mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-25 01:23:22 +01:00
10 lines
156 B
Go
10 lines
156 B
Go
|
//go:build android || (ios && !darwin)
|
||
|
|
||
|
package iface
|
||
|
|
||
|
import "errors"
|
||
|
|
||
|
func (w *WGIface) Destroy() error {
|
||
|
return errors.New("not supported on mobile")
|
||
|
}
|