go-project-template/httpserver/index.go

11 lines
175 B
Go

package httpserver
import (
"net/http"
echo "github.com/labstack/echo/v4"
)
func index(c echo.Context) error {
return c.Render(http.StatusOK, "sample-page.html", nil)
}