(statusCode int)
| 111 | } |
| 112 | |
| 113 | func (rw *statResponseWriter) WriteHeader(statusCode int) { |
| 114 | // cache statusCode to keep the opportunity to change it in further |
| 115 | rw.statusCode = statusCode |
| 116 | } |
| 117 | |
| 118 | // CloseNotify implements http.CloseNotifier |
| 119 | func (rw *statResponseWriter) CloseNotify() <-chan bool { |
no outgoing calls