Codebase list golang-github-vbauerster-mpb / 951c08e bar_filler_nop.go
951c08e

Tree @951c08e (Download .tar.gz)

bar_filler_nop.go @951c08eraw · history · blame

package mpb

import (
	"io"

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

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