(code int)
| 1299 | } |
| 1300 | |
| 1301 | func (sw *statusWriter) WriteHeader(code int) { |
| 1302 | sw.status = code |
| 1303 | sw.ResponseWriter.WriteHeader(code) |
| 1304 | } |
| 1305 | |
| 1306 | func (sw *statusWriter) Write(b []byte) (int, error) { |
| 1307 | if sw.status >= 500 { |
no outgoing calls