aboutsummaryrefslogtreecommitdiff
path: root/processors/processors.go
blob: e060abe65ffe4e03a4918d2943d93a7230bea2ee (plain)
1
2
3
4
5
6
7
8
9
package processors

import "github.com/gofiber/fiber/v2"

func Initialize(app *fiber.App) {
	app.Use(RequestContextProcessor)
	app.Use(MetaContextProcessor)
	app.Use(SidebarContextProcessor)
}