htmgo/examples/starter-template/pages/generated.go

13 lines
310 B
Go
Raw Normal View History

2024-09-11 00:52:18 +00:00
// Package pages THIS FILE IS GENERATED. DO NOT EDIT.
package pages
2024-09-17 17:13:22 +00:00
import "github.com/labstack/echo/v4"
2024-09-14 00:05:55 +00:00
import "github.com/maddalax/htmgo/framework/h"
2024-09-11 00:52:18 +00:00
2024-09-17 17:13:22 +00:00
func RegisterPages(f *echo.Echo) {
f.GET("/", func(ctx echo.Context) error {
cc := ctx.(*h.RequestContext)
return h.HtmlView(ctx, IndexPage(cc))
2024-09-11 00:52:18 +00:00
})
}