aboutsummaryrefslogtreecommitdiff
path: root/packfile
diff options
context:
space:
mode:
Diffstat (limited to 'packfile')
-rw-r--r--packfile/ingest/api.go2
-rw-r--r--packfile/ingest/drain.go2
-rw-r--r--packfile/ingest/entry_prefix.go2
-rw-r--r--packfile/ingest/hash.go2
-rw-r--r--packfile/ingest/ingest_test.go2
-rw-r--r--packfile/ingest/records.go2
-rw-r--r--packfile/ingest/rewrite_header_trailer.go2
-rw-r--r--packfile/ingest/scan.go2
-rw-r--r--packfile/ingest/state.go2
-rw-r--r--packfile/ingest/thin_append.go2
-rw-r--r--packfile/ingest/thin_unresolved.go2
11 files changed, 11 insertions, 11 deletions
diff --git a/packfile/ingest/api.go b/packfile/ingest/api.go
index 6d4437e0..b2f3c92f 100644
--- a/packfile/ingest/api.go
+++ b/packfile/ingest/api.go
@@ -7,7 +7,7 @@ import (
"io"
"os"
- "codeberg.org/lindenii/furgit/objectid"
+ objectid "codeberg.org/lindenii/furgit/object/id"
"codeberg.org/lindenii/furgit/objectstore"
)
diff --git a/packfile/ingest/drain.go b/packfile/ingest/drain.go
index d37c714e..48fb91d9 100644
--- a/packfile/ingest/drain.go
+++ b/packfile/ingest/drain.go
@@ -6,7 +6,7 @@ import (
"codeberg.org/lindenii/furgit/internal/compress/zlib"
objectheader "codeberg.org/lindenii/furgit/object/header"
- "codeberg.org/lindenii/furgit/objectid"
+ objectid "codeberg.org/lindenii/furgit/object/id"
objecttype "codeberg.org/lindenii/furgit/object/type"
packfmt "codeberg.org/lindenii/furgit/packfile"
)
diff --git a/packfile/ingest/entry_prefix.go b/packfile/ingest/entry_prefix.go
index f2da8c9c..a107b4e8 100644
--- a/packfile/ingest/entry_prefix.go
+++ b/packfile/ingest/entry_prefix.go
@@ -4,7 +4,7 @@ import (
"fmt"
"codeberg.org/lindenii/furgit/internal/intconv"
- "codeberg.org/lindenii/furgit/objectid"
+ objectid "codeberg.org/lindenii/furgit/object/id"
objecttype "codeberg.org/lindenii/furgit/object/type"
)
diff --git a/packfile/ingest/hash.go b/packfile/ingest/hash.go
index bb8fd2b4..4b739c20 100644
--- a/packfile/ingest/hash.go
+++ b/packfile/ingest/hash.go
@@ -4,7 +4,7 @@ import (
"fmt"
objectheader "codeberg.org/lindenii/furgit/object/header"
- "codeberg.org/lindenii/furgit/objectid"
+ objectid "codeberg.org/lindenii/furgit/object/id"
objecttype "codeberg.org/lindenii/furgit/object/type"
)
diff --git a/packfile/ingest/ingest_test.go b/packfile/ingest/ingest_test.go
index 4e0cd3ec..3eb821d3 100644
--- a/packfile/ingest/ingest_test.go
+++ b/packfile/ingest/ingest_test.go
@@ -12,7 +12,7 @@ import (
"testing"
"codeberg.org/lindenii/furgit/internal/testgit"
- "codeberg.org/lindenii/furgit/objectid"
+ objectid "codeberg.org/lindenii/furgit/object/id"
"codeberg.org/lindenii/furgit/packfile/ingest"
)
diff --git a/packfile/ingest/records.go b/packfile/ingest/records.go
index 27150af6..75f157fa 100644
--- a/packfile/ingest/records.go
+++ b/packfile/ingest/records.go
@@ -1,7 +1,7 @@
package ingest
import (
- "codeberg.org/lindenii/furgit/objectid"
+ objectid "codeberg.org/lindenii/furgit/object/id"
objecttype "codeberg.org/lindenii/furgit/object/type"
)
diff --git a/packfile/ingest/rewrite_header_trailer.go b/packfile/ingest/rewrite_header_trailer.go
index c5f858de..f1f18a39 100644
--- a/packfile/ingest/rewrite_header_trailer.go
+++ b/packfile/ingest/rewrite_header_trailer.go
@@ -5,7 +5,7 @@ import (
"io"
"codeberg.org/lindenii/furgit/internal/intconv"
- "codeberg.org/lindenii/furgit/objectid"
+ objectid "codeberg.org/lindenii/furgit/object/id"
)
// rewritePackHeaderAndTrailer rewrites object count and trailer hash using ReadAt/WriteAt.
diff --git a/packfile/ingest/scan.go b/packfile/ingest/scan.go
index 41916cdf..de4e993c 100644
--- a/packfile/ingest/scan.go
+++ b/packfile/ingest/scan.go
@@ -4,7 +4,7 @@ import (
"fmt"
"codeberg.org/lindenii/furgit/internal/progress"
- "codeberg.org/lindenii/furgit/objectid"
+ objectid "codeberg.org/lindenii/furgit/object/id"
)
// streamPackAndScan copies src into temp .pack while scanning packed entries.
diff --git a/packfile/ingest/state.go b/packfile/ingest/state.go
index d44b6e09..797323b2 100644
--- a/packfile/ingest/state.go
+++ b/packfile/ingest/state.go
@@ -4,7 +4,7 @@ import (
"io"
"os"
- "codeberg.org/lindenii/furgit/objectid"
+ objectid "codeberg.org/lindenii/furgit/object/id"
)
const (
diff --git a/packfile/ingest/thin_append.go b/packfile/ingest/thin_append.go
index c0883d81..779d477f 100644
--- a/packfile/ingest/thin_append.go
+++ b/packfile/ingest/thin_append.go
@@ -6,7 +6,7 @@ import (
"io"
"codeberg.org/lindenii/furgit/internal/intconv"
- "codeberg.org/lindenii/furgit/objectid"
+ objectid "codeberg.org/lindenii/furgit/object/id"
objecttype "codeberg.org/lindenii/furgit/object/type"
)
diff --git a/packfile/ingest/thin_unresolved.go b/packfile/ingest/thin_unresolved.go
index 72433878..757cc0e2 100644
--- a/packfile/ingest/thin_unresolved.go
+++ b/packfile/ingest/thin_unresolved.go
@@ -4,7 +4,7 @@ import (
"bytes"
"slices"
- "codeberg.org/lindenii/furgit/objectid"
+ objectid "codeberg.org/lindenii/furgit/object/id"
objecttype "codeberg.org/lindenii/furgit/object/type"
)