clash/test/util_other_test.go
2021-07-18 17:23:30 +08:00

13 lines
145 B
Go

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