mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-22 08:03:30 +01:00
fd67892cb4
Refactor the flat code structure
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")
|
|
}
|