forked from security/hakurei
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 <cat@gensokyo.uk>
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user