Fix: test broken on opensource repo
This commit is contained in:
parent
155470d455
commit
de06c38532
1 changed files with 3 additions and 3 deletions
|
@ -4,9 +4,9 @@ package main
|
|||
|
||||
import (
|
||||
"errors"
|
||||
"net/netip"
|
||||
"net"
|
||||
)
|
||||
|
||||
func defaultRouteIP() (netip.Addr, error) {
|
||||
return netip.Addr{}, errors.New("not supported")
|
||||
func defaultRouteIP() (net.IP, error) {
|
||||
return nil, errors.New("not supported")
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue