This repository has been archived on 2024-09-06. You can view files and clone it, but cannot push or open issues or pull requests.
Clash.Meta/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")
}