You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
geoip/model.go

16 lines
256 B
Go

package geoip
type Country struct {
ISOCode string
CountryName map[string]string
}
type City struct {
ISOCode string
TimeZone string
CityName map[string]string
CountryName map[string]string
Latitude float64
Longitude float64
}