Clash.Meta/test/util_other_test.go

13 lines
165 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"
2022-06-09 18:00:41 +08:00
"net/netip"
2021-07-18 17:23:22 +08:00
)
2022-06-09 18:00:41 +08:00
func defaultRouteIP() (netip.Addr, error) {
return netip.Addr{}, errors.New("not supported")
2021-07-18 17:23:22 +08:00
}