| 19 | } |
| 20 | |
| 21 | type Writer struct { |
| 22 | sctx *super.Context |
| 23 | channel string |
| 24 | start nano.Ts |
| 25 | writer vio.PushCloser |
| 26 | ctrl bool |
| 27 | flusher http.Flusher |
| 28 | } |
| 29 | |
| 30 | func NewWriter(sctx *super.Context, w io.WriteCloser, format string, flusher http.Flusher, ctrl bool) (*Writer, error) { |
| 31 | d := &Writer{ |
nothing calls this directly
no outgoing calls
no test coverage detected