aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/system
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2026-03-17 15:35:58 +0900
committerOphestra <cat@gensokyo.uk>2026-03-17 15:39:03 +0900
commit6d015a949e27f20c86409c7d78053f0b0493f165 (patch)
tree4d2bc1e9596fa30ea03e4c0cc575e6a7a969249d /internal/system
parente9a72490db44426605debd3cc756a7924931d706 (diff)
check: move from container
This package is not container specific, and widely used across the project. Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/system')
-rw-r--r--internal/system/acl.go2
-rw-r--r--internal/system/dispatcher.go2
-rw-r--r--internal/system/dispatcher_test.go2
-rw-r--r--internal/system/link.go2
-rw-r--r--internal/system/mkdir.go2
-rw-r--r--internal/system/pipewire.go2
-rw-r--r--internal/system/system_test.go2
-rw-r--r--internal/system/wayland.go2
8 files changed, 8 insertions, 8 deletions
diff --git a/internal/system/acl.go b/internal/system/acl.go
index 060d8854..4df0d9c1 100644
--- a/internal/system/acl.go
+++ b/internal/system/acl.go
@@ -6,7 +6,7 @@ import (
"os"
"slices"
- "hakurei.app/container/check"
+ "hakurei.app/check"
"hakurei.app/hst"
"hakurei.app/internal/acl"
)
diff --git a/internal/system/dispatcher.go b/internal/system/dispatcher.go
index 88091595..d9a9fdb9 100644
--- a/internal/system/dispatcher.go
+++ b/internal/system/dispatcher.go
@@ -6,7 +6,7 @@ import (
"log"
"os"
- "hakurei.app/container/check"
+ "hakurei.app/check"
"hakurei.app/hst"
"hakurei.app/internal/acl"
"hakurei.app/internal/dbus"
diff --git a/internal/system/dispatcher_test.go b/internal/system/dispatcher_test.go
index f69422c9..01236e4b 100644
--- a/internal/system/dispatcher_test.go
+++ b/internal/system/dispatcher_test.go
@@ -9,7 +9,7 @@ import (
"testing"
"unsafe"
- "hakurei.app/container/check"
+ "hakurei.app/check"
"hakurei.app/container/stub"
"hakurei.app/hst"
"hakurei.app/internal/acl"
diff --git a/internal/system/link.go b/internal/system/link.go
index a13adaae..872ac80a 100644
--- a/internal/system/link.go
+++ b/internal/system/link.go
@@ -3,7 +3,7 @@ package system
import (
"fmt"
- "hakurei.app/container/check"
+ "hakurei.app/check"
"hakurei.app/hst"
)
diff --git a/internal/system/mkdir.go b/internal/system/mkdir.go
index f375579c..cff5d662 100644
--- a/internal/system/mkdir.go
+++ b/internal/system/mkdir.go
@@ -5,7 +5,7 @@ import (
"fmt"
"os"
- "hakurei.app/container/check"
+ "hakurei.app/check"
"hakurei.app/hst"
)
diff --git a/internal/system/pipewire.go b/internal/system/pipewire.go
index 2026b2b4..a78cee26 100644
--- a/internal/system/pipewire.go
+++ b/internal/system/pipewire.go
@@ -5,7 +5,7 @@ import (
"fmt"
"io"
- "hakurei.app/container/check"
+ "hakurei.app/check"
"hakurei.app/hst"
"hakurei.app/internal/acl"
"hakurei.app/internal/pipewire"
diff --git a/internal/system/system_test.go b/internal/system/system_test.go
index f36ff54e..f82aa932 100644
--- a/internal/system/system_test.go
+++ b/internal/system/system_test.go
@@ -8,7 +8,7 @@ import (
"strconv"
"testing"
- "hakurei.app/container/check"
+ "hakurei.app/check"
"hakurei.app/container/stub"
"hakurei.app/hst"
"hakurei.app/internal/xcb"
diff --git a/internal/system/wayland.go b/internal/system/wayland.go
index 43112784..ada91167 100644
--- a/internal/system/wayland.go
+++ b/internal/system/wayland.go
@@ -5,7 +5,7 @@ import (
"fmt"
"io"
- "hakurei.app/container/check"
+ "hakurei.app/check"
"hakurei.app/hst"
"hakurei.app/internal/acl"
)