12 lines
155 B
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)
|
||
|
}
|