mirror of
https://github.com/chaitin/MonkeyCode.git
synced 2026-02-02 14:53:55 +08:00
9 lines
171 B
Go
9 lines
171 B
Go
package domain
|
|
|
|
type IPAddress struct {
|
|
IP string `json:"ip"`
|
|
Country string `json:"country"`
|
|
Province string `json:"province"`
|
|
City string `json:"city"`
|
|
}
|