htmgo/starter-template/pages/generated.go

12 lines
277 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-13 18:29:02 +00:00
import "github.com/gofiber/fiber/v2"
2024-09-14 00:05:55 +00:00
import "github.com/maddalax/htmgo/framework/h"
2024-09-11 00:52:18 +00:00
func RegisterPages(f *fiber.App) {
f.Get("/", func(ctx *fiber.Ctx) error {
return h.HtmlView(ctx, IndexPage(ctx))
})
}