aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/app/export_test.go
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2025-09-25 13:46:21 +0900
committerOphestra <cat@gensokyo.uk>2025-09-25 13:51:54 +0900
commitae2df2c450dd655b93a950124b6ab16e2b4d967b (patch)
tree849ab40049228e17891351d97097f8c9d0e18c10 /internal/app/export_test.go
parent6e3f34f2ecfe0f3cd024a6e73bf6560080feac53 (diff)
internal: remove sys package
This package is replaced by container/stub. Remove and replace it with unexported implementation for the upcoming test suite rewrite. Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/app/export_test.go')
-rw-r--r--internal/app/export_test.go16
1 files changed, 0 insertions, 16 deletions
diff --git a/internal/app/export_test.go b/internal/app/export_test.go
deleted file mode 100644
index 1bfba48a..00000000
--- a/internal/app/export_test.go
+++ /dev/null
@@ -1,16 +0,0 @@
-package app
-
-import (
- "context"
-
- "hakurei.app/container"
- "hakurei.app/hst"
- "hakurei.app/internal/app/state"
- "hakurei.app/internal/sys"
- "hakurei.app/system"
-)
-
-func FinaliseIParams(ctx context.Context, k sys.State, config *hst.Config, id *state.ID) (*system.I, *container.Params, error) {
- seal := outcome{id: &stringPair[state.ID]{*id, id.String()}}
- return seal.sys, seal.container, seal.finalise(ctx, k, config)
-}