13 lines
277 B
Go
13 lines
277 B
Go
package pokeapi
|
|
|
|
// RespShallowLocations -
|
|
type RespShallowLocations struct {
|
|
Count int `json:"count"`
|
|
Next *string `json:"next"`
|
|
Previous *string `json:"previous"`
|
|
Results []struct {
|
|
Name string `json:"name"`
|
|
URL string `json:"url"`
|
|
} `json:"results"`
|
|
}
|