fix: some test

This commit is contained in:
世界
2022-06-07 10:45:32 +08:00
parent 9126cbab91
commit 73d5042774
12 changed files with 348 additions and 60 deletions

View File

@ -4,9 +4,9 @@ package main
import (
"errors"
"net"
"net/netip"
)
func defaultRouteIP() (net.IP, error) {
return nil, errors.New("not supported")
func defaultRouteIP() (netip.Addr, error) {
return netip.Addr{}, errors.New("not supported")
}