Saner file names

This commit is contained in:
Simon Martens
2024-12-21 11:15:03 +01:00
parent 977d7331d5
commit ff3ed74b5e
14 changed files with 19 additions and 23 deletions

View File

@@ -0,0 +1,9 @@
package controllers
import "github.com/gofiber/fiber/v2"
func Get(path string) fiber.Handler {
return func(c *fiber.Ctx) error {
return c.Render(path, nil)
}
}