From 802e6afa34de7f6124157153b0bde4ac25d7b363 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Sat, 27 Sep 2025 19:53:43 +0900 Subject: container/output: move global output to msg Signed-off-by: Ophestra --- container/output.go | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'container/output.go') diff --git a/container/output.go b/container/output.go index 86f57c8a..4d799eb4 100644 --- a/container/output.go +++ b/container/output.go @@ -75,14 +75,3 @@ func (s *Suspendable) Resume() (resumed bool, dropped uintptr, n int64, err erro } return } - -var msg Msg = new(DefaultMsg) - -func GetOutput() Msg { return msg } -func SetOutput(v Msg) { - if v == nil { - msg = new(DefaultMsg) - } else { - msg = v - } -} -- cgit v1.3.1