From 1b5ecd9eaf3289d164d8ed1bce6013e0e4ef8e86 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Thu, 3 Jul 2025 02:59:43 +0900 Subject: container: move out of toplevel This allows slightly easier use of the vanity url. This also provides some disambiguation between low level containers and hakurei app containers. Signed-off-by: Ophestra --- system/output.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'system/output.go') diff --git a/system/output.go b/system/output.go index ad0559bf..d431310d 100644 --- a/system/output.go +++ b/system/output.go @@ -1,14 +1,14 @@ package system import ( - "git.gensokyo.uk/security/hakurei" + "git.gensokyo.uk/security/hakurei/container" ) -var msg hakurei.Msg = new(hakurei.DefaultMsg) +var msg container.Msg = new(container.DefaultMsg) -func SetOutput(v hakurei.Msg) { +func SetOutput(v container.Msg) { if v == nil { - msg = new(hakurei.DefaultMsg) + msg = new(container.DefaultMsg) } else { msg = v } -- cgit v1.3.1