Konfi-Castle-Kasino/showList.go

16 lines
207 B
Go

package main
import (
"github.com/labstack/echo"
"net/http"
)
func showList(c echo.Context) error {
//Config
SiteConf := initConfig()
//Template
return c.Render(http.StatusOK, "index", SiteConf)
}