()
| 6 | type NoopResponseWriter struct{} |
| 7 | |
| 8 | func (NoopResponseWriter) Header() http.Header { return http.Header{} } |
| 9 | func (NoopResponseWriter) Write(p []byte) (int, error) { return len(p), nil } |
| 10 | func (NoopResponseWriter) WriteHeader(int) {} |
no outgoing calls