()
| 111 | } |
| 112 | |
| 113 | func (w *StatusWriter) Flush() { |
| 114 | f, ok := w.ResponseWriter.(http.Flusher) |
| 115 | if !ok { |
| 116 | panic("http.ResponseWriter is not http.Flusher") |
| 117 | } |
| 118 | f.Flush() |
| 119 | } |
| 120 | |
| 121 | func getStackString(skip int) string { |
| 122 | // Get up to 5 callers, skipping this one and the skip count. |