11 lines
168 B
Go
11 lines
168 B
Go
package web
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
echo "github.com/labstack/echo/v4"
|
|
)
|
|
|
|
func index(c echo.Context) error {
|
|
return c.Render(http.StatusOK, "sample-page.html", nil)
|
|
}
|