Continent contains information about a continent.
| 3 | type ( |
| 4 | // Continent contains information about a continent. |
| 5 | Continent struct { |
| 6 | ID int `json:"id"` |
| 7 | Name string `json:"name"` |
| 8 | ISO string `json:"iso"` |
| 9 | } |
| 10 | |
| 11 | // Country contains information about a country. |
| 12 | Country struct { |
nothing calls this directly
no outgoing calls
no test coverage detected