package externalIpProvider import ( "net" ) type ExternalIpProvider interface { GetExternalIp() (net.IP, error) }