LogStream.
| 33 | |
| 34 | // LogStream. |
| 35 | type LogStream interface { |
| 36 | Lines() <-chan *logline.LogLine // Returns the output channel of this LogStream. |
| 37 | } |
| 38 | |
| 39 | // defaultReadBufferSize the size of the buffer for reading bytes for files. |
| 40 | // |
no outgoing calls
no test coverage detected