Konfi-Castle-Kasino/showList.go

12 lines
181 B
Go
Raw Normal View History

2017-06-15 09:30:32 +00:00
package main
import (
"github.com/labstack/echo"
"net/http"
)
func showList (c echo.Context) error {
//Template
return c.Render(http.StatusOK, "index", Message{"schinken"})
}