()
| 583 | type noopResponseWriter struct{} |
| 584 | |
| 585 | func (noopResponseWriter) Header() http.Header { return http.Header{} } |
| 586 | func (noopResponseWriter) Write(p []byte) (int, error) { return len(p), nil } |
| 587 | func (noopResponseWriter) WriteHeader(int) {} |
| 588 |
no outgoing calls