mirror of
https://gitlab.com/mbugroup/lti-api.git
synced 2026-05-20 05:21:57 +00:00
13 lines
218 B
Go
13 lines
218 B
Go
package middleware
|
|
|
|
import (
|
|
"github.com/gofiber/fiber/v2"
|
|
"github.com/gofiber/fiber/v2/middleware/recover"
|
|
)
|
|
|
|
func RecoverConfig() fiber.Handler {
|
|
return recover.New(recover.Config{
|
|
EnableStackTrace: true,
|
|
})
|
|
}
|