clash/test/util_other_test.go

13 lines
165 B
Go
Raw Normal View History

2021-09-04 14:44:18 +00:00
//go:build !darwin
2021-07-18 09:23:22 +00:00
package main
import (
"errors"
2022-06-09 10:00:41 +00:00
"net/netip"
2021-07-18 09:23:22 +00:00
)
2022-06-09 10:00:41 +00:00
func defaultRouteIP() (netip.Addr, error) {
return netip.Addr{}, errors.New("not supported")
2021-07-18 09:23:22 +00:00
}