This is useful if you want to pass some specific data to the next middleware.
    1. c.Locals("user", "admin")
    2. return c.Next()
    3. app.Get("/admin", func(c *fiber.Ctx) error {
    4. if c.Locals("user") == "admin" {
    5. return c.SendStatus(403)