2021-02-02 12:05:47 +01:00
|
|
|
package geolocate
|
|
|
|
|
|
|
|
import (
|
2022-08-28 20:00:25 +02:00
|
|
|
"github.com/ooni/probe-cli/v3/internal/geoipx"
|
2021-02-02 12:05:47 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
type mmdbLookupper struct{}
|
|
|
|
|
2022-08-28 20:00:25 +02:00
|
|
|
func (mmdbLookupper) LookupASN(ip string) (uint, string, error) {
|
|
|
|
return geoipx.LookupASN(ip)
|
2021-02-02 12:05:47 +01:00
|
|
|
}
|
|
|
|
|
2022-08-28 20:00:25 +02:00
|
|
|
func (mmdbLookupper) LookupCC(ip string) (string, error) {
|
|
|
|
return geoipx.LookupCC(ip)
|
2021-02-02 12:05:47 +01:00
|
|
|
}
|