Files
kgpz_web/controllers/static_controller.go
2024-12-21 11:15:03 +01:00

10 lines
166 B
Go

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)
}
}