dnsupdater/internal/outboundip/iprequester.go

11 lines
151 B
Go
Raw Normal View History

2020-10-26 09:36:59 +00:00
package outboundip
type IpRequestResult struct {
Ip string
Error error
}
type IpRequester interface {
GetOutboundIp() <-chan IpRequestResult
}