aboutsummaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorGravatar Runxi Yu2026-03-27 09:08:40 +0000
committerGravatar Runxi Yu2026-03-27 09:08:40 +0000
commitd7e90798170265b37ea5f980f94ca310cfda3180 (patch)
tree89921ca5cb6dd5aaefa3c0ae72352381261cb1e6 /cmd
parentCONTRIBUTING: Fix submitting changes deadlines (diff)
signatureNo signature
object/store: Rename from object/storer
Diffstat (limited to 'cmd')
-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
)