TODO(stevvooe): We may want to support more interesting parameterization of the bar. For now, it is very simple. Bar provides a very simple progress bar implementation. Use with fmt.Printf and "r" to format the progress bar. A "-" flag makes it progress from right to left.
| 29 | // Use with fmt.Printf and "r" to format the progress bar. A "-" flag makes it |
| 30 | // progress from right to left. |
| 31 | type Bar float64 |
| 32 | |
| 33 | var _ fmt.Formatter = Bar(1.0) |
| 34 |
no outgoing calls
no test coverage detected