mirror of
https://github.com/Ernous/TorrServerJellyfin.git
synced 2025-12-20 05:56:10 +05:00
16 lines
222 B
Go
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)
|
|
}
|