Files
TorrServerJellyfin/src/server/web/About.go
2018-08-29 12:33:14 +03:00

16 lines
222 B
Go

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)
}