Output is an interface for writing progress information. It's like a writer for progress, but we don't call it Writer because that would be confusing next to ProgressReader (also, because it doesn't implement the io.Writer interface).
| 33 | // that would be confusing next to ProgressReader (also, because it |
| 34 | // doesn't implement the io.Writer interface). |
| 35 | type Output interface { |
| 36 | WriteProgress(Progress) error |
| 37 | } |
| 38 | |
| 39 | type chanOutput chan<- Progress |
| 40 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…