Progress is an interface for a simple progress meter. Call `Start()` to begin reporting. `format` should include some kind of '%d' field, into which will be written the current count. A spinner and a CR character will be added automatically. Call `Inc()` every time the quantity of interest increase
| 18 | // been called, it may be reused (starting at value 0) by calling |
| 19 | // `Start()` again. |
| 20 | type Progress interface { |
| 21 | Start(format string) |
| 22 | Inc() |
| 23 | Add(delta int64) |
| 24 | Done() |
| 25 | } |
| 26 | |
| 27 | // Spinners is a slice of short strings that are repeatedly output in |
| 28 | // order to show the user that we are working, before we have any |
no outgoing calls
no test coverage detected