aboutsummaryrefslogtreecommitdiff
path: root/packfile/ingest/api.go
diff options
context:
space:
mode:
authorGravatar Runxi Yu2026-03-25 14:34:50 +0000
committerGravatar Runxi Yu2026-03-25 14:34:50 +0000
commite4a7aa0742f5070299d37e8421c99d67f0af3f90 (patch)
tree36d89781476a92e61280c5ff232a2773e4092c0e /packfile/ingest/api.go
parent*: delta -> packfile/delta (diff)
signatureNo signature
*: object/store -> object/storer v0.1.107
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.