()
| 54 | } |
| 55 | |
| 56 | func (w *httpResponseWriter) Header() http.Header { |
| 57 | if w.header == nil { |
| 58 | w.header = http.Header{} |
| 59 | } |
| 60 | return w.header |
| 61 | } |
| 62 | |
| 63 | func (w *httpResponseWriter) Write(p []byte) (int, error) { |
| 64 | w.writeHeader(http.StatusOK, p) |
no outgoing calls