package monstersirenfetch // Albums is the response of /api/albums. type Albums struct { Code int `json:"code"` Msg string `json:"msg"` Data []AlbumData `json:"data"` } // AlbumData represents an album. type AlbumData struct { CID StringInt `json:"cid"` Name string `json:"name"` CoverURL string `json:"coverUrl"` Artists []string `json:"artistes"` }