aboutsummaryrefslogtreecommitdiffhomepage
path: root/ldd
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 /ldd
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 'ldd')
-rw-r--r--ldd/exec.go2
-rw-r--r--ldd/exec_test.go2
-rw-r--r--ldd/ldd.go2
-rw-r--r--ldd/ldd_test.go2
4 files changed, 4 insertions, 4 deletions
diff --git a/ldd/exec.go b/ldd/exec.go
index 7392bd8b..45d33ec0 100644
--- a/ldd/exec.go
+++ b/ldd/exec.go
@@ -9,8 +9,8 @@ import (
"os/exec"
"time"
+ "hakurei.app/check"
"hakurei.app/container"
- "hakurei.app/container/check"
"hakurei.app/container/fhs"
"hakurei.app/container/seccomp"
"hakurei.app/container/std"
diff --git a/ldd/exec_test.go b/ldd/exec_test.go
index a1e97344..b24b30e4 100644
--- a/ldd/exec_test.go
+++ b/ldd/exec_test.go
@@ -6,8 +6,8 @@ import (
"os/exec"
"testing"
+ "hakurei.app/check"
"hakurei.app/container"
- "hakurei.app/container/check"
"hakurei.app/ldd"
"hakurei.app/message"
)
diff --git a/ldd/ldd.go b/ldd/ldd.go
index 2e8cf59f..91797f18 100644
--- a/ldd/ldd.go
+++ b/ldd/ldd.go
@@ -15,7 +15,7 @@ import (
"strconv"
"strings"
- "hakurei.app/container/check"
+ "hakurei.app/check"
)
var (
diff --git a/ldd/ldd_test.go b/ldd/ldd_test.go
index 77f20a68..db41355c 100644
--- a/ldd/ldd_test.go
+++ b/ldd/ldd_test.go
@@ -6,7 +6,7 @@ import (
"strings"
"testing"
- "hakurei.app/container/check"
+ "hakurei.app/check"
"hakurei.app/ldd"
)