chore: update dependencies

This commit is contained in:
世界
2022-06-09 18:00:41 +08:00
parent 23063ae0b9
commit 5055542d61
7 changed files with 68 additions and 68 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")
}