summaryrefslogtreecommitdiff
path: root/args.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-01-18 00:43:48 -0600
committerJeff Carr <[email protected]>2024-01-18 00:43:48 -0600
commitaff82aa4ea8f9e7dcc549afec9218154e1d9c7bd (patch)
tree1ef64a2a6806a6f3bbcf9e0fc8715fd824e9d53a /args.go
parentd048182ab8e2b3e35aacffce7306583f5caae3aa (diff)
new pathsv0.12.14
Signed-off-by: Jeff Carr <[email protected]>
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")