From f347d44c2281f507e3786aa498f634bfa4c92d84 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Wed, 12 Nov 2025 23:12:38 +0900 Subject: internal/helper: relocate from helper This package is ugly and is pending removal only kept alive by xdg-dbus-proxy. Its exported symbols are made available until v0.4.0 where it will be removed for #24. Signed-off-by: Ophestra --- internal/helper/stub_test.go | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 internal/helper/stub_test.go (limited to 'internal/helper/stub_test.go') diff --git a/internal/helper/stub_test.go b/internal/helper/stub_test.go new file mode 100644 index 00000000..4b438a5b --- /dev/null +++ b/internal/helper/stub_test.go @@ -0,0 +1,11 @@ +package helper_test + +import ( + "os" + "testing" + + "hakurei.app/container" + "hakurei.app/internal/helper" +) + +func TestMain(m *testing.M) { container.TryArgv0(nil); helper.InternalHelperStub(); os.Exit(m.Run()) } -- cgit v1.3.1