aboutsummaryrefslogtreecommitdiffhomepage
path: root/cmd
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 /cmd
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 'cmd')
-rw-r--r--cmd/hakurei/command.go2
-rw-r--r--cmd/hakurei/parse_test.go2
-rw-r--r--cmd/hakurei/print_test.go2
-rw-r--r--cmd/mbf/main.go2
-rw-r--r--cmd/sharefs/fuse.go2
-rw-r--r--cmd/sharefs/fuse_test.go2
6 files changed, 6 insertions, 6 deletions
diff --git a/cmd/hakurei/command.go b/cmd/hakurei/command.go
index 2b0752ea..7b8e35b8 100644
--- a/cmd/hakurei/command.go
+++ b/cmd/hakurei/command.go
@@ -13,8 +13,8 @@ import (
"time"
_ "unsafe" // for go:linkname
+ "hakurei.app/check"
"hakurei.app/command"
- "hakurei.app/container/check"
"hakurei.app/container/fhs"
"hakurei.app/ext"
"hakurei.app/hst"
diff --git a/cmd/hakurei/parse_test.go b/cmd/hakurei/parse_test.go
index 2939ab03..1a574966 100644
--- a/cmd/hakurei/parse_test.go
+++ b/cmd/hakurei/parse_test.go
@@ -6,7 +6,7 @@ import (
"testing"
"time"
- "hakurei.app/container/check"
+ "hakurei.app/check"
"hakurei.app/hst"
"hakurei.app/internal/store"
"hakurei.app/message"
diff --git a/cmd/hakurei/print_test.go b/cmd/hakurei/print_test.go
index d2e5ea37..e67580b4 100644
--- a/cmd/hakurei/print_test.go
+++ b/cmd/hakurei/print_test.go
@@ -7,7 +7,7 @@ import (
"testing"
"time"
- "hakurei.app/container/check"
+ "hakurei.app/check"
"hakurei.app/hst"
"hakurei.app/internal/store"
"hakurei.app/message"
diff --git a/cmd/mbf/main.go b/cmd/mbf/main.go
index 2b4f2e10..3dc1f06e 100644
--- a/cmd/mbf/main.go
+++ b/cmd/mbf/main.go
@@ -18,9 +18,9 @@ import (
"time"
"unique"
+ "hakurei.app/check"
"hakurei.app/command"
"hakurei.app/container"
- "hakurei.app/container/check"
"hakurei.app/container/fhs"
"hakurei.app/container/seccomp"
"hakurei.app/container/std"
diff --git a/cmd/sharefs/fuse.go b/cmd/sharefs/fuse.go
index a52ee035..f636d423 100644
--- a/cmd/sharefs/fuse.go
+++ b/cmd/sharefs/fuse.go
@@ -31,8 +31,8 @@ import (
"syscall"
"unsafe"
+ "hakurei.app/check"
"hakurei.app/container"
- "hakurei.app/container/check"
"hakurei.app/container/fhs"
"hakurei.app/container/std"
"hakurei.app/hst"
diff --git a/cmd/sharefs/fuse_test.go b/cmd/sharefs/fuse_test.go
index d25bc888..e760cf75 100644
--- a/cmd/sharefs/fuse_test.go
+++ b/cmd/sharefs/fuse_test.go
@@ -6,7 +6,7 @@ import (
"reflect"
"testing"
- "hakurei.app/container/check"
+ "hakurei.app/check"
)
func TestParseOpts(t *testing.T) {