package
1.1.6
Repository: https://github.com/speecan/util.git
Documentation: pkg.go.dev

# 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.