11 lines
151 B
Go
11 lines
151 B
Go
|
package outboundip
|
||
|
|
||
|
type IpRequestResult struct {
|
||
|
Ip string
|
||
|
Error error
|
||
|
}
|
||
|
|
||
|
type IpRequester interface {
|
||
|
GetOutboundIp() <-chan IpRequestResult
|
||
|
}
|