feat(album): get data by ID

This commit is contained in:
Mathis Maquenne
2024-10-08 01:35:53 +02:00
parent 4f82007a49
commit 47ebaf143b
3 changed files with 52 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
package models
type Album struct {
Songs struct {
Data []Song `json:"DATA"`
} `json:"SONGS"`
}