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 --- internal/output.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'internal/output.go') diff --git a/internal/output.go b/internal/output.go index a15be77d..4e148688 100644 --- a/internal/output.go +++ b/internal/output.go @@ -1,13 +1,13 @@ package internal import ( - "git.gensokyo.uk/security/hakurei" + "git.gensokyo.uk/security/hakurei/container" "git.gensokyo.uk/security/hakurei/internal/hlog" "git.gensokyo.uk/security/hakurei/system" ) func InstallOutput(verbose bool) { hlog.Store(verbose) - hakurei.SetOutput(hlog.Output{}) + container.SetOutput(hlog.Output{}) system.SetOutput(hlog.Output{}) } -- cgit v1.3.1