Files
kgpz_web/controllers/static.go
2024-12-03 20:15:39 +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)
}
}