shithub: furgit

ref: 21e2f19ae2a3baa744b6bbed997f757f0af7e01f
dir: /internal/progress/constants.go/

View raw version
package progress

import "time"

const (
	// DefaultDelay is the default delayed-progress interval.
	DefaultDelay = time.Second

	updateInterval     = time.Second
	throughputInterval = 500 * time.Millisecond
)