fix --gui argv

This commit is contained in:
Jeff Carr 2025-09-09 05:28:47 -05:00
parent 4bcfaddab3
commit 01b8af4620
1 changed files with 2 additions and 1 deletions

3
gui.go
View File

@ -18,7 +18,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 {
GuiVerbose bool `arg:"--gui-verbose" help:"enable all logging"`
GuiPlugin string `arg:"--gui" help:"select the plugin (andlabs,gocui,etc)"`
GuiVerbose bool `arg:"--gui-verbose" help:"enable all logging"`
}
/*