Progress is a progress displaying subroutine, it allows to show download and other operations progress mixed with progress bar
| 32 | // Progress is a progress displaying subroutine, it allows to show download and other operations progress |
| 33 | // mixed with progress bar |
| 34 | type Progress struct { |
| 35 | stopped chan bool |
| 36 | queue chan printTask |
| 37 | bar *pb.ProgressBar |
| 38 | barShown bool |
| 39 | worker ProgressWorker |
| 40 | } |
| 41 | |
| 42 | // Check interface |
| 43 | var ( |
nothing calls this directly
no outgoing calls
no test coverage detected