aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/app/export_test.go
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2025-04-12 10:54:24 +0900
committerOphestra <cat@gensokyo.uk>2025-04-12 10:54:24 +0900
commit0d7c1a9a4356614f035225aeb24e66421879a99b (patch)
treec490cfd0f75fbf0218045e277812fb5b6173d4e3 /internal/app/export_test.go
parentae6f5ede1928c9d0a2d480b6a924914e8599529f (diff)
app: rename app implementation package
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/app/export_test.go')
-rw-r--r--internal/app/export_test.go24
1 files changed, 0 insertions, 24 deletions
diff --git a/internal/app/export_test.go b/internal/app/export_test.go
deleted file mode 100644
index 60d97b36..00000000
--- a/internal/app/export_test.go
+++ /dev/null
@@ -1,24 +0,0 @@
-package app
-
-import (
- "git.gensokyo.uk/security/fortify/fst"
- "git.gensokyo.uk/security/fortify/internal/sys"
- "git.gensokyo.uk/security/fortify/sandbox"
- "git.gensokyo.uk/security/fortify/system"
-)
-
-func NewWithID(id fst.ID, os sys.State) fst.App {
- a := new(app)
- a.id = newID(&id)
- a.sys = os
- return a
-}
-
-func AppIParams(a fst.App, sa fst.SealedApp) (*system.I, *sandbox.Params) {
- v := a.(*app)
- seal := sa.(*outcome)
- if v.outcome != seal || v.id != seal.id {
- panic("broken app/outcome link")
- }
- return seal.sys, seal.container
-}