shithub: furgit

ref: c8dd7d3b44c93a664dddc0c4619d336c6e13d2a8
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
)