wip (apply)

This commit is contained in:
2025-10-20 01:35:32 +02:00
parent 8ca8918966
commit a95dd4f3e0
14 changed files with 354 additions and 15 deletions

View File

@@ -7,7 +7,7 @@ func recoverMiddleware(next http.Handler) http.Handler {
defer func() {
err := recover()
if err != nil {
internalServerError(w, r)
internalServerError(err, w, r)
}
}()
next.ServeHTTP(w, r)