country-geo-locations/pkg/geoloc/types.go

13 lines
328 B
Go
Raw Normal View History

2023-12-19 13:56:03 +01:00
package geoloc
type IPInfo struct {
IPNumFrom uint `json:"ip_num_min"`
IPNumTo uint `json:"ip_num_max"`
Code string `json:"code"`
Country string `json:"country"`
State string `json:"state"`
City string `json:"city"`
Latitude float32 `json:"latitude"`
Longitude float32 `json:"longitude"`
}