(statusCode int)
| 197 | } |
| 198 | |
| 199 | func (r *pipeSSERecorder) WriteHeader(statusCode int) { |
| 200 | r.status = statusCode |
| 201 | } |
| 202 | |
| 203 | func (r *pipeSSERecorder) Write(p []byte) (int, error) { |
| 204 | n, err := r.body.Write(p) |
no outgoing calls
no test coverage detected