From 6d015a949e27f20c86409c7d78053f0b0493f165 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Tue, 17 Mar 2026 15:35:58 +0900 Subject: check: move from container This package is not container specific, and widely used across the project. Signed-off-by: Ophestra --- cmd/hakurei/command.go | 2 +- cmd/hakurei/parse_test.go | 2 +- cmd/hakurei/print_test.go | 2 +- cmd/mbf/main.go | 2 +- cmd/sharefs/fuse.go | 2 +- cmd/sharefs/fuse_test.go | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) (limited to 'cmd') 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) { -- cgit v1.3.1