12 lines
328 B
Go
12 lines
328 B
Go
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"`
|
|
}
|