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