chore(response_writer): add Unwrap() method to ResponseWriter interface

This commit is contained in:
Raju Ahmed 2026-01-26 16:39:16 +06:00
parent e3118cc378
commit 1fde3243c2

View File

@ -44,6 +44,9 @@ type ResponseWriter interface {
// Pusher get the http.Pusher for server push // Pusher get the http.Pusher for server push
Pusher() http.Pusher Pusher() http.Pusher
// Unwrap get the underlying http.ResponseWriter
Unwrap() http.ResponseWriter
} }
type responseWriter struct { type responseWriter struct {