| 29 | } |
| 30 | |
| 31 | type loggableResponseWriter struct { |
| 32 | StatusCode int |
| 33 | |
| 34 | next http.ResponseWriter |
| 35 | } |
| 36 | |
| 37 | func (w *loggableResponseWriter) Header() http.Header { |
| 38 | return w.next.Header() |
nothing calls this directly
no outgoing calls
no test coverage detected