mirror of
https://github.com/nxtrace/NTrace-core.git
synced 2025-08-12 06:26:39 +00:00
12 lines
268 B
Go
12 lines
268 B
Go
package util
|
|
|
|
type IPGeoData struct {
|
|
Asnumber string `json:"asnumber"`
|
|
Country string `json:"country"`
|
|
Prov string `json:"prov"`
|
|
City string `json:"city"`
|
|
District string `json:"district"`
|
|
Owner string `json:"owner"`
|
|
Isp string `json:"isp"`
|
|
}
|