(statusCode int)
| 185 | } |
| 186 | |
| 187 | func (srw *syncResponseWriter) WriteHeader(statusCode int) { |
| 188 | srw.statusCode = statusCode |
| 189 | } |
| 190 | |
| 191 | func (srw *syncResponseWriter) Write(b []byte) (int, error) { |
| 192 | srw.mu.Lock() |
no outgoing calls
no test coverage detected