Fix getTopSongs endpoint mapping

This commit is contained in:
Deluan
2020-08-20 11:27:38 -04:00
parent b5567090ed
commit e2e79d6471
+1 -1
View File
@@ -77,7 +77,7 @@ func (api *Router) routes() http.Handler {
H(withPlayer, "getSong", c.GetSong) H(withPlayer, "getSong", c.GetSong)
H(withPlayer, "getArtistInfo", c.GetArtistInfo) H(withPlayer, "getArtistInfo", c.GetArtistInfo)
H(withPlayer, "getArtistInfo2", c.GetArtistInfo2) H(withPlayer, "getArtistInfo2", c.GetArtistInfo2)
H(withPlayer, "GetTopSongs", c.GetTopSongs) H(withPlayer, "getTopSongs", c.GetTopSongs)
}) })
r.Group(func(r chi.Router) { r.Group(func(r chi.Router) {
c := initAlbumListController(api) c := initAlbumListController(api)