summaryrefslogtreecommitdiff
path: root/args.go
diff options
context:
space:
mode:
Diffstat (limited to 'args.go')
-rw-r--r--args.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/args.go b/args.go
index c739f57..b944210 100644
--- a/args.go
+++ b/args.go
@@ -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")