This commit is contained in:
2025-03-10 22:14:46 +02:00
parent bea73f0115
commit 0148583f5b
5 changed files with 144 additions and 6 deletions

42
pokeapi/location_list.go Normal file
View File

@@ -0,0 +1,42 @@
package pokeapi
import (
"encoding/json"
"io"
"net/http"
)
// ListLocations -
func (c *Client) ListLocations(pageURL *string) (RespShallowLocations, error) {
url := baseURL + "/location-area"
if pageURL != nil {
url = *pageURL
}
req, err := http.NewRequest("GET", url, nil)
if err != nil {
return RespShallowLocations{}, err
}
resp, err := c.httpClient.Do(req)
if err != nil {
return RespShallowLocations{}, err
}
defer func(Body io.ReadCloser) {
_ = Body.Close()
}(resp.Body)
dat, err := io.ReadAll(resp.Body)
if err != nil {
return RespShallowLocations{}, err
}
locationsResp := RespShallowLocations{}
err = json.Unmarshal(dat, &locationsResp)
if err != nil {
return RespShallowLocations{}, err
}
return locationsResp, nil
}