Started the insert page but need to take a break to do the final part.

This commit is contained in:
Zed A. Shaw 2025-07-27 03:00:21 -04:00
parent ea3b59129f
commit b0ba0c7e16
2 changed files with 14 additions and 3 deletions

View file

@ -12,7 +12,7 @@ import (
func Page(path string) (func(c *fiber.Ctx) error) {
return func (c *fiber.Ctx) error {
return c.Render("stream", fiber.Map{})
return c.Render(path, fiber.Map{})
}
}