aboutsummaryrefslogtreecommitdiff
path: root/object/store/chain
diff options
context:
space:
mode:
Diffstat (limited to 'object/store/chain')
-rw-r--r--object/store/chain/bytes.go6
-rw-r--r--object/store/chain/chain.go2
-rw-r--r--object/store/chain/header.go6
-rw-r--r--object/store/chain/new.go2
-rw-r--r--object/store/chain/reader.go6
-rw-r--r--object/store/chain/size.go4
6 files changed, 13 insertions, 13 deletions
diff --git a/object/store/chain/bytes.go b/object/store/chain/bytes.go
index dc9b7906..aabed063 100644
--- a/object/store/chain/bytes.go
+++ b/object/store/chain/bytes.go
@@ -4,9 +4,9 @@ import (
"errors"
"fmt"
- objectid "codeberg.org/lindenii/furgit/object/id"
- objectstore "codeberg.org/lindenii/furgit/object/store"
- objecttype "codeberg.org/lindenii/furgit/object/type"
+ objectid "lindenii.org/go/furgit/object/id"
+ objectstore "lindenii.org/go/furgit/object/store"
+ objecttype "lindenii.org/go/furgit/object/type"
)
// ReadBytesFull reads a full serialized object from the first backend that has it.
diff --git a/object/store/chain/chain.go b/object/store/chain/chain.go
index 218c8abd..93249f41 100644
--- a/object/store/chain/chain.go
+++ b/object/store/chain/chain.go
@@ -2,7 +2,7 @@
// backends.
package chain
-import objectstore "codeberg.org/lindenii/furgit/object/store"
+import objectstore "lindenii.org/go/furgit/object/store"
// Chain queries multiple object databases in order.
//
diff --git a/object/store/chain/header.go b/object/store/chain/header.go
index f6c92459..3d70d494 100644
--- a/object/store/chain/header.go
+++ b/object/store/chain/header.go
@@ -4,9 +4,9 @@ import (
"errors"
"fmt"
- objectid "codeberg.org/lindenii/furgit/object/id"
- objectstore "codeberg.org/lindenii/furgit/object/store"
- objecttype "codeberg.org/lindenii/furgit/object/type"
+ objectid "lindenii.org/go/furgit/object/id"
+ objectstore "lindenii.org/go/furgit/object/store"
+ objecttype "lindenii.org/go/furgit/object/type"
)
// ReadHeader reads object header data from the first backend that has it.
diff --git a/object/store/chain/new.go b/object/store/chain/new.go
index dd499d38..c5e36a93 100644
--- a/object/store/chain/new.go
+++ b/object/store/chain/new.go
@@ -1,6 +1,6 @@
package chain
-import objectstore "codeberg.org/lindenii/furgit/object/store"
+import objectstore "lindenii.org/go/furgit/object/store"
// New creates an ordered object database chain.
//
diff --git a/object/store/chain/reader.go b/object/store/chain/reader.go
index 3991ee9a..feff84e9 100644
--- a/object/store/chain/reader.go
+++ b/object/store/chain/reader.go
@@ -5,9 +5,9 @@ import (
"fmt"
"io"
- objectid "codeberg.org/lindenii/furgit/object/id"
- objectstore "codeberg.org/lindenii/furgit/object/store"
- objecttype "codeberg.org/lindenii/furgit/object/type"
+ objectid "lindenii.org/go/furgit/object/id"
+ objectstore "lindenii.org/go/furgit/object/store"
+ objecttype "lindenii.org/go/furgit/object/type"
)
// ReadReaderFull reads a full serialized object stream from the first backend that has it.
diff --git a/object/store/chain/size.go b/object/store/chain/size.go
index f0099028..3f9ea591 100644
--- a/object/store/chain/size.go
+++ b/object/store/chain/size.go
@@ -4,8 +4,8 @@ import (
"errors"
"fmt"
- objectid "codeberg.org/lindenii/furgit/object/id"
- objectstore "codeberg.org/lindenii/furgit/object/store"
+ objectid "lindenii.org/go/furgit/object/id"
+ objectstore "lindenii.org/go/furgit/object/store"
)
// ReadSize reads object content length from the first backend that has it.