From 87b5c30ef6d5b7b8a10d6a5a8610054c403923e6 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Thu, 9 Oct 2025 05:04:08 +0900 Subject: message: relocate from container This package is quite useful. This change allows it to be imported without importing container. Signed-off-by: Ophestra --- container/executable_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'container/executable_test.go') diff --git a/container/executable_test.go b/container/executable_test.go index 5608a8ae..33981bb6 100644 --- a/container/executable_test.go +++ b/container/executable_test.go @@ -5,11 +5,12 @@ import ( "testing" "hakurei.app/container" + "hakurei.app/message" ) func TestExecutable(t *testing.T) { for i := 0; i < 16; i++ { - if got := container.MustExecutable(container.NewMsg(nil)); got != os.Args[0] { + if got := container.MustExecutable(message.NewMsg(nil)); got != os.Args[0] { t.Errorf("MustExecutable: %q, want %q", got, os.Args[0]) } -- cgit v1.3.1