Files
openlan/pkg/libol/nl_others.go
2022-07-29 23:38:54 +08:00

10 lines
145 B
Go
Executable File

// +build !linux
package libol
import "net"
func GetLocalByGw(addr string) (net.IP, error) {
return nil, NewErr("GetLocalByGw notSupport")
}