diff options
Diffstat (limited to 'system')
| -rw-r--r-- | system/output.go | 10 |
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 } |
