We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 62f66e5 commit 2458b9dCopy full SHA for 2458b9d
docs/middleware/recover.md
@@ -19,15 +19,15 @@ Import the middleware package that is part of the Fiber web framework
19
```go
20
import (
21
"github.com/gofiber/fiber/v3"
22
- "github.com/gofiber/fiber/v3/middleware/recover"
+ recoverer "github.com/gofiber/fiber/v3/middleware/recover"
23
)
24
```
25
26
After you initiate your Fiber app, you can use the following possibilities:
27
28
29
// Initialize default config
30
-app.Use(recover.New())
+app.Use(recoverer.New())
31
32
// This panic will be caught by the middleware
33
app.Get("/", func(c fiber.Ctx) error {
0 commit comments