summaryrefslogtreecommitdiff
path: root/args.go
diff options
context:
space:
mode:
Diffstat (limited to 'args.go')
-rw-r--r--args.go6
1 files changed, 2 insertions, 4 deletions
diff --git a/args.go b/args.go
index fbfda77..861d55b 100644
--- a/args.go
+++ b/args.go
@@ -11,10 +11,8 @@ This struct can be used with the go-arg package. These
are the generic default command line arguments for the 'GUI' 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"`
- // this doesn't work, maybe it can't work
- // GuiStdout bool `arg:"--gui-stdout" help:"send STDOUT and STDERR to /tmp/go-gui.log"`
+ GuiPlugin string `arg:"--gui" help:"Use this gui toolkit [andlabs,gocui,nocui,nogui]"`
+ GuiVerbose bool `arg:"--gui-verbose" help:"enable all logging"`
}
/*