Files
openlan/pkg/libol/nl_others.go
2025-09-05 11:04:33 +08:00

15 lines
248 B
Go
Executable File

//go:build !linux
// +build !linux
package libol
import "net"
func GetLocalByGw(addr string) (net.IP, error) {
return nil, NewErr("GetLocalByGw notSupport")
}
func ListRoutes() ([]Prefix, error) {
return nil, NewErr("ListRoute notSupport")
}