forked from security/hakurei
Having it at the project root never made sense since the "ego" name was deprecated. This change finally addresses it. Signed-off-by: Ophestra <cat@gensokyo.uk>
14 lines
292 B
Go
14 lines
292 B
Go
package internal
|
|
|
|
import (
|
|
"git.gensokyo.uk/security/hakurei/internal/hlog"
|
|
"git.gensokyo.uk/security/hakurei/sandbox"
|
|
"git.gensokyo.uk/security/hakurei/system"
|
|
)
|
|
|
|
func InstallOutput(verbose bool) {
|
|
hlog.Store(verbose)
|
|
sandbox.SetOutput(hlog.Output{})
|
|
system.SetOutput(hlog.Output{})
|
|
}
|