mirror of
https://github.com/Ernous/TorrServerJellyfin.git
synced 2025-12-20 05:56:10 +05:00
update
This commit is contained in:
17
src/server/web/pages/pages.go
Normal file
17
src/server/web/pages/pages.go
Normal file
@@ -0,0 +1,17 @@
|
||||
package pages
|
||||
|
||||
import (
|
||||
"github.com/gin-gonic/gin"
|
||||
)
|
||||
|
||||
func mainPage(c *gin.Context) {
|
||||
c.HTML(200, "mainPage", nil)
|
||||
}
|
||||
|
||||
func apijsPage(c *gin.Context) {
|
||||
c.HTML(200, "apijsPage", nil)
|
||||
}
|
||||
|
||||
func mainjsPage(c *gin.Context) {
|
||||
c.HTML(200, "mainjsPage", nil)
|
||||
}
|
||||
Reference in New Issue
Block a user