1
0
mirror of https://github.com/MetaCubeX/mihomo.git synced 2025-09-19 20:15:59 +08:00
Files
mihomo/test/util_other_test.go

13 lines
146 B
Go
Raw Normal View History

2021-09-04 22:44:18 +08:00
//go:build !darwin
2021-07-18 17:23:22 +08:00
package main
import (
"errors"
"net"
)
func defaultRouteIP() (net.IP, error) {
return nil, errors.New("not supported")
}