clash/test/util_other_test.go
2021-09-04 22:44:18 +08:00

14 lines
164 B
Go

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