2023-12-19 13:56:03 +01:00
|
|
|
package geoloc
|
|
|
|
|
2024-11-26 13:35:54 +01:00
|
|
|
const CalculationValue uint = 256
|
|
|
|
|
2023-12-19 13:56:03 +01:00
|
|
|
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"`
|
|
|
|
}
|