Codebase list golang-github-vbauerster-mpb / a3bfb16 bar_filler_nop.go
a3bfb16

Tree @a3bfb16 (Download .tar.gz)

bar_filler_nop.go @a3bfb16raw · history · blame

package mpb

import (
	"io"

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

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