mirror of
https://github.com/Ernous/TorrServerJellyfin.git
synced 2025-12-20 14:06:09 +05:00
initial
This commit is contained in:
15
src/server/web/About.go
Normal file
15
src/server/web/About.go
Normal file
@@ -0,0 +1,15 @@
|
||||
package server
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
|
||||
"github.com/labstack/echo"
|
||||
)
|
||||
|
||||
func initAbout(e *echo.Echo) {
|
||||
e.GET("/about", aboutPage)
|
||||
}
|
||||
|
||||
func aboutPage(c echo.Context) error {
|
||||
return c.Render(http.StatusOK, "aboutPage", nil)
|
||||
}
|
||||
Reference in New Issue
Block a user