util_other_test.go 165 B

123456789101112
  1. //go:build !darwin
  2. package main
  3. import (
  4. "errors"
  5. "net/netip"
  6. )
  7. func defaultRouteIP() (netip.Addr, error) {
  8. return netip.Addr{}, errors.New("not supported")
  9. }