完善接口
All checks were successful
Go CI / test-and-build (push) Successful in 11s

This commit is contained in:
2026-04-07 20:49:15 +08:00
parent 064ea6c674
commit f57e777580
4 changed files with 81 additions and 3 deletions

View File

@@ -20,7 +20,7 @@ type ArtistDetail struct {
type AlbumDetail struct {
ID int `json:"id"`
Title string `json:"title"`
Artist int `json:"artist"`
Title string `json:"title"`
Artist string `json:"artist"`
Songs []int `json:"songs"`
}