initial, broken

This commit is contained in:
2020-03-24 13:32:35 -07:00
parent 471ac01bbd
commit 9ac46046cb
12 changed files with 421 additions and 0 deletions

11
hn/handlers.go Normal file
View File

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