mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 18:51:59 +00:00
16 lines
309 B
Go
16 lines
309 B
Go
package commitgraph
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/sourcegraph/sourcegraph/internal/goroutine"
|
|
)
|
|
|
|
type UploadServiceBackgroundJobs interface {
|
|
NewCommitGraphUpdater(
|
|
interval time.Duration,
|
|
maxAgeForNonStaleBranches time.Duration,
|
|
maxAgeForNonStaleTags time.Duration,
|
|
) goroutine.BackgroundRoutine
|
|
}
|