aboutsummaryrefslogtreecommitdiff
path: root/object/signed/tag
diff options
context:
space:
mode:
Diffstat (limited to 'object/signed/tag')
-rw-r--r--object/signed/tag/integration_test.go6
-rw-r--r--object/signed/tag/parse.go2
-rw-r--r--object/signed/tag/signature_algorithms.go2
-rw-r--r--object/signed/tag/signature_append.go2
-rw-r--r--object/signed/tag/tag.go2
-rw-r--r--object/signed/tag/unit_test.go4
6 files changed, 9 insertions, 9 deletions
diff --git a/object/signed/tag/integration_test.go b/object/signed/tag/integration_test.go
index af32aa02..ce424078 100644
--- a/object/signed/tag/integration_test.go
+++ b/object/signed/tag/integration_test.go
@@ -7,9 +7,9 @@ import (
"path/filepath"
"testing"
- "codeberg.org/lindenii/furgit/internal/testgit"
- objectid "codeberg.org/lindenii/furgit/object/id"
- signedtag "codeberg.org/lindenii/furgit/object/signed/tag"
+ "lindenii.org/go/furgit/internal/testgit"
+ objectid "lindenii.org/go/furgit/object/id"
+ signedtag "lindenii.org/go/furgit/object/signed/tag"
)
func setupSSHSignedTag(
diff --git a/object/signed/tag/parse.go b/object/signed/tag/parse.go
index b2061d3f..64c974f2 100644
--- a/object/signed/tag/parse.go
+++ b/object/signed/tag/parse.go
@@ -4,7 +4,7 @@ import (
"bytes"
"slices"
- objectid "codeberg.org/lindenii/furgit/object/id"
+ objectid "lindenii.org/go/furgit/object/id"
)
var signatureBeginLines = [][]byte{ //nolint:gochecknoglobals
diff --git a/object/signed/tag/signature_algorithms.go b/object/signed/tag/signature_algorithms.go
index bc178bce..feb6054d 100644
--- a/object/signed/tag/signature_algorithms.go
+++ b/object/signed/tag/signature_algorithms.go
@@ -1,6 +1,6 @@
package signedtag
-import objectid "codeberg.org/lindenii/furgit/object/id"
+import objectid "lindenii.org/go/furgit/object/id"
// Algorithms returns the algorithms for which the tag carries signatures.
func (tag *Tag) Algorithms() []objectid.Algorithm {
diff --git a/object/signed/tag/signature_append.go b/object/signed/tag/signature_append.go
index 101816eb..a6752c72 100644
--- a/object/signed/tag/signature_append.go
+++ b/object/signed/tag/signature_append.go
@@ -1,6 +1,6 @@
package signedtag
-import objectid "codeberg.org/lindenii/furgit/object/id"
+import objectid "lindenii.org/go/furgit/object/id"
// AppendSignature appends the signature for algo to dst.
func (tag *Tag) AppendSignature(dst []byte, algo objectid.Algorithm) ([]byte, bool) {
diff --git a/object/signed/tag/tag.go b/object/signed/tag/tag.go
index 2ebf9369..62b34ffc 100644
--- a/object/signed/tag/tag.go
+++ b/object/signed/tag/tag.go
@@ -1,6 +1,6 @@
package signedtag
-import objectid "codeberg.org/lindenii/furgit/object/id"
+import objectid "lindenii.org/go/furgit/object/id"
// Tag represents the payload and signatures parsed from a raw tag object.
type Tag struct {
diff --git a/object/signed/tag/unit_test.go b/object/signed/tag/unit_test.go
index dd4ae66f..1d06df89 100644
--- a/object/signed/tag/unit_test.go
+++ b/object/signed/tag/unit_test.go
@@ -3,8 +3,8 @@ package signedtag_test
import (
"testing"
- objectid "codeberg.org/lindenii/furgit/object/id"
- signedtag "codeberg.org/lindenii/furgit/object/signed/tag"
+ objectid "lindenii.org/go/furgit/object/id"
+ signedtag "lindenii.org/go/furgit/object/signed/tag"
)
func TestParseSignedTag(t *testing.T) {