Konfi-Castle-Kasino/showList.go
2017-08-31 18:37:46 +02:00

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