14 lines
347 B
Go
14 lines
347 B
Go
package constants
|
|
|
|
import "time"
|
|
|
|
// time.Duration constants
|
|
const (
|
|
// RecalculateTimeWindowHighSharesJob interval
|
|
RecalculateTimeWindowHighSharesJobInterval = 1 * time.Minute
|
|
// RecalculateTopSharesJob interval
|
|
RecalculateTopSharesJobInterval = 30 * time.Second
|
|
// IngestorWatchInterval interval
|
|
IngestorWatchInterval = 30 * time.Second
|
|
)
|