tijl.dev-core/modules/web/common.go

21 lines
412 B
Go
Raw Normal View History

2024-08-21 23:43:54 +02:00
package web
import (
"github.com/gofiber/fiber/v2"
)
var commons *fiber.Map = &fiber.Map{}
var commonFunctions []func(*fiber.Ctx, *fiber.Map)
func RegisterCommon(function func(*fiber.Ctx, *fiber.Map)) {
commonFunctions = append(commonFunctions, function)
}
func Common(c *fiber.Ctx) *fiber.Map {
theMap := &fiber.Map{}
for _, function := range commonFunctions {
function(c, theMap)
}
return theMap
}