mirror of
https://github.com/Ernous/TorrServerJellyfin.git
synced 2025-12-19 21:46:11 +05:00
Delete route.go
This commit is contained in:
@@ -1,22 +0,0 @@
|
||||
package msx
|
||||
|
||||
import "github.com/gin-gonic/gin"
|
||||
|
||||
func SetupRoute(route *gin.RouterGroup) {
|
||||
route.GET("/msx/start.json", msxStart)
|
||||
route.GET("/msx/torrents", msxTorrents)
|
||||
route.GET("/msx/playlist", msxPlaylist)
|
||||
route.GET("/msx/playlist/*fname", msxPlaylist)
|
||||
|
||||
route.GET("/msx/html5x.html", func(c *gin.Context) {
|
||||
c.Data(200, "text/html; charset=utf-8", Msxhtml5xhtml)
|
||||
})
|
||||
|
||||
route.GET("/msx/tizen.html", func(c *gin.Context) {
|
||||
c.Data(200, "text/html; charset=utf-8", Msxtizenhtml)
|
||||
})
|
||||
|
||||
route.GET("/msx/tvx-plugin.min.js", func(c *gin.Context) {
|
||||
c.Data(200, "text/javascript; charset=utf-8", Msxtvxpluginminjs)
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user