Use config from OAuth2Authenticator for auth command

This commit is contained in:
Philipp Wolfer 2023-11-22 08:41:18 +01:00
parent cf3747bde2
commit d0739aad0f
No known key found for this signature in database
GPG key ID: 8FDF744D4919943B
5 changed files with 31 additions and 18 deletions

View file

@ -22,6 +22,15 @@ THE SOFTWARE.
package spotify
type TracksResult struct {
Href string `json:"href"`
Limit int `json:"limit"`
Next string `json:"next"`
Previous string `json:"previous"`
Offset int `json:"offset"`
Total int `json:"total"`
}
type RecentlyPlayedResult struct {
Href string `json:"href"`
Limit int `json:"limit"`