(code int)
| 364 | } |
| 365 | |
| 366 | func (w *countingResponseWriter) WriteHeader(code int) { |
| 367 | w.status = code |
| 368 | w.ResponseWriter.WriteHeader(code) |
| 369 | } |
| 370 | |
| 371 | func (w *countingResponseWriter) Flush() { |
| 372 | if f, ok := w.ResponseWriter.(http.Flusher); ok { |
no outgoing calls
no test coverage detected