style: fix whitespace in middleware.go

This commit is contained in:
rcourtman
2025-11-27 08:34:31 +00:00
parent 861bff123d
commit b341ce42fb

View File

@@ -93,7 +93,6 @@ func ErrorHandler(next http.Handler) http.Handler {
})
}
// writeErrorResponse writes a consistent error response
func writeErrorResponse(w http.ResponseWriter, statusCode int, code, message string, details map[string]string) {
w.Header().Set("Content-Type", "application/json")
@@ -156,4 +155,3 @@ func (rw *responseWriter) Flush() {
flusher.Flush()
}
}