From 087959e81bcd52104676ccacedd605e6491b4376 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Thu, 3 Jul 2025 04:11:38 +0900 Subject: app: remove split implementation It is completely nonsensical and highly error-prone to have multiple implementations of this in the same build. This should be switched at compile time instead therefore the split packages are pointless. Signed-off-by: Ophestra --- internal/app/state/multi_test.go | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 internal/app/state/multi_test.go (limited to 'internal/app/state/multi_test.go') diff --git a/internal/app/state/multi_test.go b/internal/app/state/multi_test.go new file mode 100644 index 00000000..d493a388 --- /dev/null +++ b/internal/app/state/multi_test.go @@ -0,0 +1,9 @@ +package state_test + +import ( + "testing" + + "hakurei.app/internal/app/state" +) + +func TestMulti(t *testing.T) { testStore(t, state.NewMulti(t.TempDir())) } -- cgit v1.3.1