shell/args.go

19 lines
266 B
Go
Raw Normal View History

package cloudflare
// initializes logging and command line options
import (
"go.wit.com/log"
)
var INFO log.LogFlag
func init() {
INFO.B = false
INFO.Name = "INFO"
INFO.Subsystem = "shell"
INFO.Short = "shell"
INFO.Desc = "general info"
INFO.Register()
}