aboutsummaryrefslogtreecommitdiff
path: root/object/store
diff options
context:
space:
mode:
authorGravatar Runxi Yu2026-05-27 06:15:31 +0000
committerGravatar Runxi Yu2026-05-27 06:15:31 +0000
commit07204c4b1ea56aeb4e236418ed80186b9f27ddf5 (patch)
tree9e5b786a198cd7482d4a66b82fc501fc1a0919e9 /object/store
parentfurgit: Fix typos (diff)
signatureNo signature
Switch module URL to lindenii.org/go/furgit
Diffstat (limited to 'object/store')
-rw-r--r--object/store/doc.go2
-rw-r--r--object/store/reader.go4
-rw-r--r--object/store/writer.go6
3 files changed, 6 insertions, 6 deletions
diff --git a/object/store/doc.go b/object/store/doc.go
index 23a8951f..f186f39f 100644
--- a/object/store/doc.go
+++ b/object/store/doc.go
@@ -4,7 +4,7 @@
// in terms of headers (type and size), raw bytes, and streaming payloads,
// but they do not parse commits, trees, blobs, or tags into typed values.
// Turning stored objects into typed objects
-// is the job of [codeberg.org/lindenii/furgit/object/fetch].
+// is the job of [lindenii.org/go/furgit/object/fetch].
//
// This package does not define one unified writing interface.
// Backends have very different write models:
diff --git a/object/store/reader.go b/object/store/reader.go
index b4df5081..b1867791 100644
--- a/object/store/reader.go
+++ b/object/store/reader.go
@@ -4,8 +4,8 @@ import (
"errors"
"io"
- "codeberg.org/lindenii/furgit/object/id"
- "codeberg.org/lindenii/furgit/object/typ"
+ "lindenii.org/go/furgit/object/id"
+ "lindenii.org/go/furgit/object/typ"
)
// ObjectReader reads Git objects by object ID.
diff --git a/object/store/writer.go b/object/store/writer.go
index ca32d7f4..73999d67 100644
--- a/object/store/writer.go
+++ b/object/store/writer.go
@@ -3,9 +3,9 @@ package store
import (
"io"
- "codeberg.org/lindenii/furgit/common/iowrap"
- "codeberg.org/lindenii/furgit/object/id"
- "codeberg.org/lindenii/furgit/object/typ"
+ "lindenii.org/go/furgit/common/iowrap"
+ "lindenii.org/go/furgit/object/id"
+ "lindenii.org/go/furgit/object/typ"
)
// ObjectWriter writes individual Git objects.