Fix Last.fm's artist.getInfo

This commit is contained in:
Deluan 2021-07-03 21:48:53 -04:00
parent fa8b4d40b4
commit 114fdce09e
1 changed files with 4 additions and 9 deletions

View File

@ -13,15 +13,10 @@ type Response struct {
}
type Artist struct {
Name string `json:"name"`
MBID string `json:"mbid"`
URL string `json:"url"`
Image []ArtistImage `json:"image"`
Streamable string `json:"streamable"`
Stats struct {
Listeners string `json:"listeners"`
Plays string `json:"plays"`
} `json:"stats"`
Name string `json:"name"`
MBID string `json:"mbid"`
URL string `json:"url"`
Image []ArtistImage `json:"image"`
Similar SimilarArtists `json:"similar"`
Tags struct {
Tag []ArtistTag `json:"tag"`