aboutsummaryrefslogtreecommitdiffhomepage
path: root/system
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2025-11-12 23:19:34 +0900
committerOphestra <cat@gensokyo.uk>2025-11-12 23:19:34 +0900
commit15a66a2b314e7a674c9445e25ffb2451ec73b55e (patch)
tree55185c2aa4d64ed87a4b543610d4d182d68fcf3a /system
parentf347d44c2281f507e3786aa498f634bfa4c92d84 (diff)
treewide: import internal/helper
For #24. Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'system')
-rw-r--r--system/dbus/dbus_test.go2
-rw-r--r--system/dbus/proc.go2
-rw-r--r--system/dbus/proc_test.go2
-rw-r--r--system/dbus/proxy.go2
-rw-r--r--system/dbus_test.go2
5 files changed, 5 insertions, 5 deletions
diff --git a/system/dbus/dbus_test.go b/system/dbus/dbus_test.go
index 85aae5bf..3a9af578 100644
--- a/system/dbus/dbus_test.go
+++ b/system/dbus/dbus_test.go
@@ -11,7 +11,7 @@ import (
"testing"
"time"
- "hakurei.app/helper"
+ "hakurei.app/internal/helper"
"hakurei.app/message"
"hakurei.app/system/dbus"
)
diff --git a/system/dbus/proc.go b/system/dbus/proc.go
index d5716bda..0bd9c6b3 100644
--- a/system/dbus/proc.go
+++ b/system/dbus/proc.go
@@ -12,7 +12,7 @@ import (
"hakurei.app/container/check"
"hakurei.app/container/seccomp"
"hakurei.app/container/std"
- "hakurei.app/helper"
+ "hakurei.app/internal/helper"
"hakurei.app/ldd"
)
diff --git a/system/dbus/proc_test.go b/system/dbus/proc_test.go
index a3ce1631..544856ed 100644
--- a/system/dbus/proc_test.go
+++ b/system/dbus/proc_test.go
@@ -5,7 +5,7 @@ import (
"testing"
"hakurei.app/container"
- "hakurei.app/helper"
+ "hakurei.app/internal/helper"
)
func TestMain(m *testing.M) { container.TryArgv0(nil); helper.InternalHelperStub(); os.Exit(m.Run()) }
diff --git a/system/dbus/proxy.go b/system/dbus/proxy.go
index a3a60652..9de49c41 100644
--- a/system/dbus/proxy.go
+++ b/system/dbus/proxy.go
@@ -6,8 +6,8 @@ import (
"sync"
"syscall"
- "hakurei.app/helper"
"hakurei.app/hst"
+ "hakurei.app/internal/helper"
"hakurei.app/message"
)
diff --git a/system/dbus_test.go b/system/dbus_test.go
index 0db07804..eedb2335 100644
--- a/system/dbus_test.go
+++ b/system/dbus_test.go
@@ -10,8 +10,8 @@ import (
"testing"
"hakurei.app/container/stub"
- "hakurei.app/helper"
"hakurei.app/hst"
+ "hakurei.app/internal/helper"
"hakurei.app/system/dbus"
)