aboutsummaryrefslogtreecommitdiff
path: root/internal/progress/constants.go
blob: c73adb2e60835360680d0de0e2c6a01ff9464914 (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
package progress

import "time"

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

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