mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 20:51:43 +00:00
12 lines
246 B
Go
12 lines
246 B
Go
package commitgraph
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/sourcegraph/sourcegraph/internal/goroutine"
|
|
)
|
|
|
|
func NewUpdater() goroutine.BackgroundRoutine {
|
|
return goroutine.NewPeriodicGoroutine(context.Background(), ConfigInst.Interval, &updater{})
|
|
}
|