Codebase list golang-github-vbauerster-mpb / e379299
edit comment Vladimir Bauer 6 years ago
1 changed file(s) with 1 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
1616 // BarFiller interface.
1717 // Bar renders itself by calling BarFiller's Fill method. You can
1818 // literally have any bar kind, by implementing this interface and
19 // passing it to the *Progress.Add method.
19 // passing it to the *Progress.Add(...) *Bar method.
2020 type BarFiller interface {
2121 Fill(w io.Writer, width int, stat *decor.Statistics)
2222 }