mirror of
https://github.com/Theodor-Springmann-Stiftung/kgpz_web.git
synced 2025-10-28 16:45:32 +00:00
10 lines
166 B
Go
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)
|
|
}
|
|
}
|