Add support Media Station X

This commit is contained in:
kolsys
2021-09-08 04:28:46 +03:00
parent a8c05b88a4
commit fa66ad4540
2 changed files with 219 additions and 0 deletions

View File

@@ -38,6 +38,11 @@ func SetupRoute(route *gin.RouterGroup) {
route.GET("/playlistall/all.m3u", allPlayList)
route.GET("/playlist", playList)
route.GET("/playlist/*fname", playList)
route.GET("/msx/start.json", msxStart)
route.GET("/msx/torrents", msxTorrents)
route.GET("/msx/playlist", msxPlaylist)
route.GET("/msx/playlist/*fname", msxPlaylist)
}
func shutdown(c *gin.Context) {