mirror of
https://github.com/Theodor-Springmann-Stiftung/lenz-web.git
synced 2025-10-28 16:55:32 +00:00
12 lines
219 B
Go
12 lines
219 B
Go
package controllers
|
|
|
|
import (
|
|
"github.com/Theodor-Springmann-Stiftung/lenz-web/xmlmodels"
|
|
"github.com/gofiber/fiber/v2"
|
|
)
|
|
|
|
func GetIndex(fiber *fiber.Ctx) error {
|
|
_ = xmlmodels.Get()
|
|
return fiber.Render("/", nil)
|
|
}
|