| 7 | ) |
| 8 | |
| 9 | type wrappedResponseWriter struct { |
| 10 | http.ResponseWriter |
| 11 | statusCode int |
| 12 | } |
| 13 | |
| 14 | func (w *wrappedResponseWriter) WriteHeader(statusCode int) { |
| 15 | w.statusCode = statusCode |
nothing calls this directly
no outgoing calls
no test coverage detected