func()

in apps.go [178:190]


func (c *Client) GetAppTags(appID string) ([][]AppTag, error) {
	resp, err := c.request(http.MethodGet, fmt.Sprintf("/apps/%s/tags", url.PathEscape(appID)), "application/json", nil)
	if err != nil {
		return nil, err
	}

	defer resp.Close()

	var tags [][]AppTag
	decoder := json.NewDecoder(resp)
	err = decoder.Decode(&tags)
	return tags, err
}