Konfi-Castle-Kasino/src/KonfiCastleKasino/admin.go

12 lines
185 B
Go
Raw Normal View History

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