Merge branch 'main' of gitlab.com:XenGi/sanic

This commit is contained in:
XenGi 2024-04-17 15:12:12 +02:00
commit 2c2efaaca2
Signed by: xengi
SSH key fingerprint: SHA256:jxWM2RTHvxxcncXycwwWkP7HCWb4VREN05UGJTbIPZg
3 changed files with 115 additions and 1 deletions

View file

@ -92,6 +92,9 @@ func main() {
g.GET("/queue/:song_id/delete", deleteTrackFromQueue)
g.GET("/queue/:song_id/move/:position", moveTrackInQueue)
g.GET("/playlists", listPlaylists)
g.GET("/playlists/:name", listPlaylist)
g.GET("/download", downloadTrack)
e.GET("/ws", wsServe)