aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/pkg
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/pkg
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/pkg')
-rw-r--r--internal/pkg/dir.go2
-rw-r--r--internal/pkg/exec.go2
-rw-r--r--internal/pkg/exec_test.go2
-rw-r--r--internal/pkg/file_test.go2
-rw-r--r--internal/pkg/ir_test.go2
-rw-r--r--internal/pkg/net_test.go2
-rw-r--r--internal/pkg/pkg.go2
-rw-r--r--internal/pkg/pkg_test.go2
-rw-r--r--internal/pkg/tar_test.go2
-rw-r--r--internal/pkg/testdata/main.go2
10 files changed, 10 insertions, 10 deletions
diff --git a/internal/pkg/dir.go b/internal/pkg/dir.go
index 1d98350f..ca7fc0fc 100644
--- a/internal/pkg/dir.go
+++ b/internal/pkg/dir.go
@@ -11,7 +11,7 @@ import (
"path/filepath"
"syscall"
- "hakurei.app/container/check"
+ "hakurei.app/check"
)
// FlatEntry is a directory entry to be encoded for [Flatten].
diff --git a/internal/pkg/exec.go b/internal/pkg/exec.go
index c5b8b10d..34837c35 100644
--- a/internal/pkg/exec.go
+++ b/internal/pkg/exec.go
@@ -15,8 +15,8 @@ import (
"time"
"unique"
+ "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/internal/pkg/exec_test.go b/internal/pkg/exec_test.go
index 16e5031c..5b0fa765 100644
--- a/internal/pkg/exec_test.go
+++ b/internal/pkg/exec_test.go
@@ -13,7 +13,7 @@ import (
"testing"
"unique"
- "hakurei.app/container/check"
+ "hakurei.app/check"
"hakurei.app/container/stub"
"hakurei.app/hst"
"hakurei.app/internal/pkg"
diff --git a/internal/pkg/file_test.go b/internal/pkg/file_test.go
index ee5359ee..ca0046ab 100644
--- a/internal/pkg/file_test.go
+++ b/internal/pkg/file_test.go
@@ -3,7 +3,7 @@ package pkg_test
import (
"testing"
- "hakurei.app/container/check"
+ "hakurei.app/check"
"hakurei.app/internal/pkg"
)
diff --git a/internal/pkg/ir_test.go b/internal/pkg/ir_test.go
index c5ffc6dc..a946d60f 100644
--- a/internal/pkg/ir_test.go
+++ b/internal/pkg/ir_test.go
@@ -6,7 +6,7 @@ import (
"reflect"
"testing"
- "hakurei.app/container/check"
+ "hakurei.app/check"
"hakurei.app/internal/pkg"
)
diff --git a/internal/pkg/net_test.go b/internal/pkg/net_test.go
index 5f92c2c0..9f668e71 100644
--- a/internal/pkg/net_test.go
+++ b/internal/pkg/net_test.go
@@ -10,7 +10,7 @@ import (
"unique"
"unsafe"
- "hakurei.app/container/check"
+ "hakurei.app/check"
"hakurei.app/internal/pkg"
)
diff --git a/internal/pkg/pkg.go b/internal/pkg/pkg.go
index 6080fd68..995357e8 100644
--- a/internal/pkg/pkg.go
+++ b/internal/pkg/pkg.go
@@ -27,7 +27,7 @@ import (
"unique"
"unsafe"
- "hakurei.app/container/check"
+ "hakurei.app/check"
"hakurei.app/internal/info"
"hakurei.app/internal/lockedfile"
"hakurei.app/message"
diff --git a/internal/pkg/pkg_test.go b/internal/pkg/pkg_test.go
index f8a72564..22f99683 100644
--- a/internal/pkg/pkg_test.go
+++ b/internal/pkg/pkg_test.go
@@ -21,8 +21,8 @@ import (
"unique"
"unsafe"
+ "hakurei.app/check"
"hakurei.app/container"
- "hakurei.app/container/check"
"hakurei.app/container/fhs"
"hakurei.app/container/stub"
"hakurei.app/internal/pkg"
diff --git a/internal/pkg/tar_test.go b/internal/pkg/tar_test.go
index 26a67d6c..09e1e4db 100644
--- a/internal/pkg/tar_test.go
+++ b/internal/pkg/tar_test.go
@@ -12,7 +12,7 @@ import (
"testing"
"testing/fstest"
- "hakurei.app/container/check"
+ "hakurei.app/check"
"hakurei.app/container/stub"
"hakurei.app/internal/pkg"
)
diff --git a/internal/pkg/testdata/main.go b/internal/pkg/testdata/main.go
index f013f088..b3b6d035 100644
--- a/internal/pkg/testdata/main.go
+++ b/internal/pkg/testdata/main.go
@@ -12,7 +12,7 @@ import (
"slices"
"strings"
- "hakurei.app/container/check"
+ "hakurei.app/check"
"hakurei.app/container/fhs"
"hakurei.app/vfs"
)