1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
package processors import ( "imageboard/config" "github.com/gofiber/fiber/v2" ) const defaultTitle = "default" func MetaContextProcessor(ctx *fiber.Ctx) error { ctx.Locals("Title", defaultTitle) ctx.Locals("Appname", config.Server.AppName) return ctx.Next() }