aboutsummaryrefslogtreecommitdiff
path: root/receivepack/service
diff options
context:
space:
mode:
Diffstat (limited to 'receivepack/service')
-rw-r--r--receivepack/service/apply.go2
-rw-r--r--receivepack/service/command.go2
-rw-r--r--receivepack/service/command_result.go2
-rw-r--r--receivepack/service/hook.go2
-rw-r--r--receivepack/service/options.go2
-rw-r--r--receivepack/service/quarantine_test.go2
-rw-r--r--receivepack/service/service_test.go2
-rw-r--r--receivepack/service/update.go2
8 files changed, 8 insertions, 8 deletions
diff --git a/receivepack/service/apply.go b/receivepack/service/apply.go
index cfd59165..137af64a 100644
--- a/receivepack/service/apply.go
+++ b/receivepack/service/apply.go
@@ -2,7 +2,7 @@ package service
import (
"codeberg.org/lindenii/furgit/internal/utils"
- "codeberg.org/lindenii/furgit/objectid"
+ objectid "codeberg.org/lindenii/furgit/object/id"
"codeberg.org/lindenii/furgit/refstore"
)
diff --git a/receivepack/service/command.go b/receivepack/service/command.go
index 33342e41..0fd8961e 100644
--- a/receivepack/service/command.go
+++ b/receivepack/service/command.go
@@ -1,6 +1,6 @@
package service
-import "codeberg.org/lindenii/furgit/objectid"
+import objectid "codeberg.org/lindenii/furgit/object/id"
// Command is one protocol-independent requested ref update.
type Command struct {
diff --git a/receivepack/service/command_result.go b/receivepack/service/command_result.go
index 18e39acc..37549f08 100644
--- a/receivepack/service/command_result.go
+++ b/receivepack/service/command_result.go
@@ -1,6 +1,6 @@
package service
-import "codeberg.org/lindenii/furgit/objectid"
+import objectid "codeberg.org/lindenii/furgit/object/id"
// CommandResult is one per-command execution result.
type CommandResult struct {
diff --git a/receivepack/service/hook.go b/receivepack/service/hook.go
index b80d52d6..c80363fc 100644
--- a/receivepack/service/hook.go
+++ b/receivepack/service/hook.go
@@ -4,7 +4,7 @@ import (
"context"
"io"
- "codeberg.org/lindenii/furgit/objectid"
+ objectid "codeberg.org/lindenii/furgit/object/id"
"codeberg.org/lindenii/furgit/objectstore"
"codeberg.org/lindenii/furgit/refstore"
)
diff --git a/receivepack/service/options.go b/receivepack/service/options.go
index a49b6b95..dc99d3f0 100644
--- a/receivepack/service/options.go
+++ b/receivepack/service/options.go
@@ -5,7 +5,7 @@ import (
"io/fs"
"os"
- "codeberg.org/lindenii/furgit/objectid"
+ objectid "codeberg.org/lindenii/furgit/object/id"
"codeberg.org/lindenii/furgit/objectstore"
"codeberg.org/lindenii/furgit/refstore"
)
diff --git a/receivepack/service/quarantine_test.go b/receivepack/service/quarantine_test.go
index 0bab3728..5e802d12 100644
--- a/receivepack/service/quarantine_test.go
+++ b/receivepack/service/quarantine_test.go
@@ -7,7 +7,7 @@ import (
"path"
"testing"
- "codeberg.org/lindenii/furgit/objectid"
+ objectid "codeberg.org/lindenii/furgit/object/id"
"codeberg.org/lindenii/furgit/objectstore/memory"
)
diff --git a/receivepack/service/service_test.go b/receivepack/service/service_test.go
index bee8d1aa..a835a6f2 100644
--- a/receivepack/service/service_test.go
+++ b/receivepack/service/service_test.go
@@ -8,7 +8,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/objectstore/memory"
"codeberg.org/lindenii/furgit/receivepack/service"
)
diff --git a/receivepack/service/update.go b/receivepack/service/update.go
index c73b73a5..043f3d51 100644
--- a/receivepack/service/update.go
+++ b/receivepack/service/update.go
@@ -1,6 +1,6 @@
package service
-import "codeberg.org/lindenii/furgit/objectid"
+import objectid "codeberg.org/lindenii/furgit/object/id"
// PlannedUpdate is one ref update that would be applied once ref writing
// exists.