Allow retrieving artists
[brackets.git] / types / artist.go
1 package types
2
3 import "github.com/zmb3/spotify"
4
5 type Artist struct {
6 ID spotify.ID `json:"id"`
7 Name string `json:"name"`
8 Popularity int `json:"popularity"`
9 }