修复错误的sql
All checks were successful
Go CI / test-and-build (push) Successful in 11s

This commit is contained in:
2026-04-08 14:26:28 +08:00
parent f57e777580
commit 9637ad2476
2 changed files with 2 additions and 2 deletions

View File

@@ -56,7 +56,6 @@ func main() {
r.Route("/api/artists", func(r chi.Router) {
r.Get("/", libraryController.GetArtists)
r.Get("/{id}", libraryController.GetArtist)
r.Get("/{id}", libraryController.GetArtist)
r.Get("/{id}/songs", libraryController.GetSongsByArtist)
r.Get("/{id}/albums", libraryController.GetAlbumsByArtist)
})