diff options
Diffstat (limited to 'args.go')
| -rw-r--r-- | args.go | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,8 +1,8 @@ package gui import ( - "go.wit.com/log" "go.wit.com/dev/alexflint/arg" + "go.wit.com/log" ) var INFO *log.LogFlag @@ -16,8 +16,8 @@ var argGui ArgsGui // This struct can be used with the go-arg package type ArgsGui struct { - GuiPlugin string `arg:"--gui" help:"Use this gui toolkit [andlabs,gocui,nocui]"` - GuiVerbose bool `arg:"--gui-verbose" help:"enable all logging"` + GuiPlugin string `arg:"--gui" help:"Use this gui toolkit [andlabs,gocui,nocui]"` + GuiVerbose bool `arg:"--gui-verbose" help:"enable all logging"` } // returns the toolkit @@ -31,7 +31,7 @@ func init() { full := "go.wit.com/gui/gui" short := "gui" - NOW = log.NewFlag("NOW", true, full, short, "temp debugging stuff") + NOW = log.NewFlag("NOW", true, full, short, "temp debugging stuff") INFO = log.NewFlag("INFO", false, full, short, "General Info") GUI = log.NewFlag("GUI", false, full, short, "basic GUI internals") NODE = log.NewFlag("NODE", false, full, short, "binary tree debugging") |
