# README
response intercepter
using
q := make(chan []byte)
w := &response.Intercepter{
Listener: q,
}
go SomeResponseWriterWantToIntercept(w)
body := <-q
fmt.Println(body)
# Functions
No description provided by the author
# Structs
Intercepter will intercept http.responseWriter.