From b6d638c574088538a562950108d6727947ec3fa0 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Tue, 28 Oct 2025 08:40:39 -0500 Subject: cleanups for argv --- gui.go | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/gui.go b/gui.go index 0d77634..a78a1a2 100644 --- a/gui.go +++ b/gui.go @@ -17,9 +17,9 @@ 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 { - GuiFhelp *GuiEmptyCmd `arg:"subcommand:guifhelp" help:"open the gui"` - GuiPlugin string `arg:"--gui" help:"select the plugin (andlabs,gocui,etc)"` - GuiVerbose bool `arg:"--gui-verbose" help:"enable all logging"` + // GuiFhelp *GuiEmptyCmd `arg:"subcommand:guifhelp" help:"open the gui"` + // GuiPlugin string `arg:"--gui" help:"select the plugin (andlabs,gocui,etc)"` + // GuiVerbose bool `arg:"--gui-verbose" help:"enable all logging"` } type GuiEmptyCmd struct { @@ -49,6 +49,7 @@ func ArgToolkit() string { } */ +/* // after go-args MustParse & user configuration // the gui package can pull out the final settings and init() the GO Plugin GUI Toolkit func postMustParse(s string) string { @@ -71,6 +72,7 @@ func postMustParse(s string) string { } return "unknown" } +*/ var prepGui *GuiPrep -- cgit v1.2.3