orangesite/hn/handlers.go

12 lines
155 B
Go

package hn
import (
"net/http"
"github.com/labstack/echo"
)
func indexHandler(c echo.Context) error {
return c.Render(http.StatusOK, "index", nil)
}