mirror of
https://github.com/Theodor-Springmann-Stiftung/kgpz_web.git
synced 2025-10-28 16:45:32 +00:00
13 lines
240 B
Go
13 lines
240 B
Go
package controllers
|
|
|
|
import (
|
|
"github.com/Theodor-Springmann-Stiftung/kgpz_web/app"
|
|
"github.com/gofiber/fiber/v2"
|
|
)
|
|
|
|
func GetAgent(kgpz *app.KGPZ) fiber.Handler {
|
|
return func(c *fiber.Ctx) error {
|
|
return c.Render("/akteur/", nil)
|
|
}
|
|
}
|