diff --git a/internal/labeller/maxmind.go b/internal/labeller/maxmind.go index 12c09ca..b006748 100644 --- a/internal/labeller/maxmind.go +++ b/internal/labeller/maxmind.go @@ -24,7 +24,7 @@ func NewMaxMindFromSecret() (MaxMind, error) { return nil, errors.New("not yet implemented") } -// This is for performing a lookup +// This is for performing a lookup on the IP Address func (mm maxMind) MaxMindLookup(address string) (*geoip2.Response, error) { req, err := http.NewRequest("GET", mm.url+address, nil) if err != nil {