mirror of
https://github.com/containers/skopeo.git
synced 2025-09-24 03:17:17 +00:00
... to work around some of the "unexpected EOF" failures. Signed-off-by: Miloslav Trmač <mitr@redhat.com>
17 lines
309 B
Go
17 lines
309 B
Go
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
|
|
})
|
|
})
|
|
}
|