diff options
Diffstat (limited to 'modules/caddyhttp')
-rw-r--r-- | modules/caddyhttp/responsewriter.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/caddyhttp/responsewriter.go b/modules/caddyhttp/responsewriter.go index 587d9f9..8aefd3f 100644 --- a/modules/caddyhttp/responsewriter.go +++ b/modules/caddyhttp/responsewriter.go @@ -7,6 +7,9 @@ import ( "net/http" ) +// TODO: Is this type really required? Wouldn't embedding the +// default ResponseWriter always work too, when wrapping it? + // ResponseWriterWrapper wraps an underlying ResponseWriter and // promotes its Pusher/Flusher/CloseNotifier/Hijacker methods // as well. To use this type, embed a pointer to it within your |