aboutsummaryrefslogtreecommitdiffhomepage
path: root/system/output.go
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2025-07-02 21:23:55 +0900
committerOphestra <cat@gensokyo.uk>2025-07-02 21:23:55 +0900
commita1d98823f8d17b49b432508d071b62ccd426f1ce (patch)
treecacbe2d42f9ff3fd49b455e849770840e34d076a /system/output.go
parent255b77d91dc40736b7bbd7d96b22500076b098e5 (diff)
hakurei: move container toplevel
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'system/output.go')
-rw-r--r--system/output.go10
1 files changed, 6 insertions, 4 deletions
diff --git a/system/output.go b/system/output.go
index a1d677a1..ad0559bf 100644
--- a/system/output.go
+++ b/system/output.go
@@ -1,12 +1,14 @@
package system
-import "git.gensokyo.uk/security/hakurei/sandbox"
+import (
+ "git.gensokyo.uk/security/hakurei"
+)
-var msg sandbox.Msg = new(sandbox.DefaultMsg)
+var msg hakurei.Msg = new(hakurei.DefaultMsg)
-func SetOutput(v sandbox.Msg) {
+func SetOutput(v hakurei.Msg) {
if v == nil {
- msg = new(sandbox.DefaultMsg)
+ msg = new(hakurei.DefaultMsg)
} else {
msg = v
}