mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2025-02-23 20:52:15 +08:00
Fix: test broken on opensource repo
This commit is contained in:
parent
afb3e00067
commit
d1f0dac302
@ -4,9 +4,9 @@ package main
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"errors"
|
"errors"
|
||||||
"net/netip"
|
"net"
|
||||||
)
|
)
|
||||||
|
|
||||||
func defaultRouteIP() (netip.Addr, error) {
|
func defaultRouteIP() (net.IP, error) {
|
||||||
return netip.Addr{}, errors.New("not supported")
|
return nil, errors.New("not supported")
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user