14 lines
211 B
Go
14 lines
211 B
Go
package publicip
|
|
|
|
import (
|
|
"context"
|
|
"net"
|
|
|
|
"github.com/qdm12/gluetun/internal/publicip/ipinfo"
|
|
)
|
|
|
|
type Fetcher interface {
|
|
FetchInfo(ctx context.Context, ip net.IP) (
|
|
result ipinfo.Response, err error)
|
|
}
|