discogs basic backend

This commit is contained in:
2022-03-13 18:04:09 -04:00
parent 98584bbef6
commit 84803f1e3d
8 changed files with 214 additions and 43 deletions

View File

@@ -21,4 +21,16 @@ type Book struct {
}
type Record struct {
ID int `json:"-"`
AlbumName string `json:"name"`
Artists []string `json:"artists"`
SortArtist string `json:"sortArtist"`
Identifier string `json:"identifier"`
Format string `json:"format"`
Genre string `json:"genre"`
Label string `json:"label"`
Year string `json:"year"`
Description string `json:"description"`
CoverURL string `json:"coverURL"`
DiscogsURL string `json:"discogsURL"`
}