mirror of
https://github.com/skidoodle/ipinfo.git
synced 2026-04-28 09:27:35 +02:00
8 lines
178 B
Go
8 lines
178 B
Go
package server
|
|
|
|
// bogonDataStruct represents the response structure for bogon IP queries.
|
|
type bogonDataStruct struct {
|
|
IP string `json:"ip"`
|
|
Bogon bool `json:"bogon"`
|
|
}
|