Bump reva

This commit is contained in:
André Duffeck
2025-07-17 15:23:57 +02:00
parent 4704cedd3b
commit 8adf425b2d
41 changed files with 351 additions and 195 deletions
@@ -130,6 +130,7 @@ type commonLoggingResponseWriter interface {
http.Flusher
Status() int
Size() int
Unwrap() http.ResponseWriter
}
// responseLogger is wrapper of http.ResponseWriter that keeps track of its HTTP
@@ -170,6 +171,10 @@ func (l *responseLogger) Flush() {
}
}
func (l *responseLogger) Unwrap() http.ResponseWriter {
return l.w
}
type hijackLogger struct {
responseLogger
}