Codebase list golang-github-vbauerster-mpb / 7e808dd bar_filler_nop.go
7e808dd

Tree @7e808dd (Download .tar.gz)

bar_filler_nop.go @7e808ddraw · history · blame

package mpb

import (
	"io"

	"github.com/vbauerster/mpb/v7/decor"
)

// NopStyle provides BarFillerBuilder which builds NOP BarFiller.
func NopStyle() BarFillerBuilder {
	return BarFillerBuilderFunc(func() BarFiller {
		return BarFillerFunc(func(io.Writer, decor.Statistics) {})
	})
}