forked from security/hakurei
This helps indicate the exact origin and nature of the error. This eliminates generic WrapErr from container. Signed-off-by: Ophestra <cat@gensokyo.uk>
13 lines
174 B
Go
13 lines
174 B
Go
package container
|
|
|
|
var msg Msg = new(DefaultMsg)
|
|
|
|
func GetOutput() Msg { return msg }
|
|
func SetOutput(v Msg) {
|
|
if v == nil {
|
|
msg = new(DefaultMsg)
|
|
} else {
|
|
msg = v
|
|
}
|
|
}
|