diff --git a/internal/bootstrap/app_bootstrap.go b/internal/bootstrap/app_bootstrap.go index d3dbfc2..a757a2e 100644 --- a/internal/bootstrap/app_bootstrap.go +++ b/internal/bootstrap/app_bootstrap.go @@ -173,6 +173,7 @@ func (app *BootstrapApp) Setup() error { // Create engine engine := gin.New() + engine.Use(gin.Recovery()) if len(app.config.TrustedProxies) > 0 { err := engine.SetTrustedProxies(strings.Split(app.config.TrustedProxies, ","))