Merge pull request #27 from pluyckx/master

Add 'Artists' field to 'Track'
This commit is contained in:
Artem Piskun 2018-04-30 21:27:27 +03:00 committed by GitHub
commit a4b6e4193a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -42,6 +42,7 @@ type Track struct {
Title string `json:"title"` Title string `json:"title"`
Type string `json:"type_"` Type string `json:"type_"`
Extraartists []ArtistSource `json:"extraartists"` Extraartists []ArtistSource `json:"extraartists"`
Artists []ArtistSource `json:"artists"`
} }
// LabelSource ... // LabelSource ...