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