App

Returns the *App reference so you could easily access all application settings.

  1. func (c *Ctx) App() *App
  1. app.Get("/stack", func(c *fiber.Ctx) error {
  2. return c.JSON(c.App().Stack())
  3. })