clash/test/util_other_test.go
2022-06-09 17:58:10 +08:00

13 lines
146 B
Go

//go:build !darwin
package main
import (
"errors"
"net"
)
func defaultRouteIP() (net.IP, error) {
return nil, errors.New("not supported")
}