summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
Diffstat (limited to 'structs.go')
-rw-r--r--structs.go8
1 files changed, 3 insertions, 5 deletions
diff --git a/structs.go b/structs.go
index b222138..4697dde 100644
--- a/structs.go
+++ b/structs.go
@@ -24,13 +24,11 @@ var Config GuiConfig
// This struct can be used with the go-arg package
type GuiArgs struct {
- Toolkit []string `arg:"--toolkit" help:"The order to attempt loading plugins [gocui,andlabs,gtk,qt]"`
- GuiDebug bool `arg:"--gui-debug" help:"debug the GUI"`
- GuiVerbose bool `arg:"--gui-verbose" help:"enable all GUI flags"`
+ GuiToolkit []string `arg:"--gui-toolkit" help:"The order to attempt loading plugins [gocui,andlabs,gtk,qt]"`
+ GuiDebug bool `arg:"--gui-debug" help:"open the GUI debugger"`
+ GuiVerbose bool `arg:"--gui-verbose" help:"enable all logging"`
}
-// var verbose GuiArgs.GuiDebug
-
type GuiConfig struct {
// This is the master node. The Binary Tree starts here
rootNode *Node