package
0.0.0-20230101183712-202847b4b89b
Repository: https://github.com/corestoreio/csfw.git
Documentation: pkg.go.dev

# Functions

WrapBuffered wraps an http.ResponseWriter, returning a proxy which only writes into the provided io.Writer.
WrapPiped wraps an http.ResponseWriter, returning a proxy which pipes the writes to your ReaderFrom.
WrapTee wraps an http.ResponseWriter, returning a proxy that allows you to hook into various parts of the response process.

# Interfaces

BufferedWriter is a proxy around an http.ResponseWriter that allows you write the response body into a buffer instead of directly writing to the client.
PipedWriter is a proxy around an http.ResponseWriter that allows you write the response body into a pipe instead of directly writing to the client.
TeeWriter is a proxy around an http.ResponseWriter that allows you to hook into various parts of the response process.