13 lines
311 B
Go
13 lines
311 B
Go
package monstersirenfetch
|
|
|
|
// Albums is the response of /api/albums.
|
|
type Albums Response[[]Album]
|
|
|
|
// Album represents the metadata of an album.
|
|
type Album struct {
|
|
CID StringInt `json:"cid"`
|
|
Name string `json:"name"`
|
|
CoverURL string `json:"coverUrl"`
|
|
Artists []string `json:"artistes"`
|
|
}
|