Files
gluetun/internal/wireguard/interfaces.go

8 lines
138 B
Go
Raw Normal View History

2023-06-28 14:42:18 +00:00
package wireguard
import "net/netip"
type Routing interface {
VPNLocalGatewayIP(vpnInterface string) (gateway netip.Addr, err error)
}