Tee causes the response body to be written to the given io.Writer in addition to proxying the writes through. Only one io.Writer can be tee'd to at once: setting a second one will overwrite the first. Writes will be sent to the proxy before being written to this io.Writer. It is illegal for the tee'
(io.Writer)
| 59 | // io.Writer. It is illegal for the tee'd writer to be modified |
| 60 | // concurrently with writes. |
| 61 | Tee(io.Writer) |
| 62 | // Unwrap returns the original proxied target. |
| 63 | Unwrap() http.ResponseWriter |
| 64 | // Discard causes all writes to the original ResponseWriter be discarded, |
no outgoing calls