aboutsummaryrefslogtreecommitdiff
path: root/cmd/index-pack/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/index-pack/main.go')
-rw-r--r--cmd/index-pack/main.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/index-pack/main.go b/cmd/index-pack/main.go
index 9ff3f838..d90e6c33 100644
--- a/cmd/index-pack/main.go
+++ b/cmd/index-pack/main.go
@@ -10,7 +10,7 @@ import (
"codeberg.org/lindenii/furgit/format/packfile/ingest"
objectid "codeberg.org/lindenii/furgit/object/id"
- objectstorer "codeberg.org/lindenii/furgit/object/storer"
+ objectstore "codeberg.org/lindenii/furgit/object/store"
"codeberg.org/lindenii/furgit/repository"
)
@@ -36,7 +36,7 @@ func main() {
func run(repoPath, destinationPath, objectFormat string, fixThin, writeRev bool) error {
var (
algo objectid.Algorithm
- base objectstorer.Store
+ base objectstore.Store
repo *repository.Repository
)