aboutsummaryrefslogtreecommitdiff
path: root/packfile/ingest/api.go
diff options
context:
space:
mode:
Diffstat (limited to 'packfile/ingest/api.go')
-rw-r--r--packfile/ingest/api.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/packfile/ingest/api.go b/packfile/ingest/api.go
index 38d7f079..860ce5f5 100644
--- a/packfile/ingest/api.go
+++ b/packfile/ingest/api.go
@@ -8,7 +8,7 @@ import (
"os"
objectid "codeberg.org/lindenii/furgit/object/id"
- "codeberg.org/lindenii/furgit/object/store"
+ "codeberg.org/lindenii/furgit/object/storer"
)
// Options controls one pack ingest operation.
@@ -18,7 +18,7 @@ type Options struct {
// WriteRev writes a .rev alongside the .pack and .idx.
WriteRev bool
// Base supplies existing objects for thin-pack fixup.
- Base objectstore.Store
+ Base objectstorer.Store
// Progress receives human-readable progress messages.
//
// When nil, no progress output is emitted.