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

Tree @ce8d74c (Download .tar.gz)

bar_filler_nop.go @ce8d74craw · 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) {})
	})
}