shithub: furgit

ref: 3ce59c3248dec0eb0f918c42f37f53bc2ac20425
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
)