package main import "github.com/bluesky-social/indigo/backfill" func NewBackfillService(store backfill.Store, h *HandlerService) *backfill.Backfiller { opts := &backfill.BackfillOptions{ ParallelBackfills: 10, ParallelRecordCreates: 1, NSIDFilter: "", SyncRequestsPerSecond: 5, RelayHost: "https://bsky.network", } return backfill.NewBackfiller("backfiller", store, h.HandleCreate, h.HandleUpdate, h.HandleDelete, opts) }