diff options
| author | Jeff Carr <[email protected]> | 2025-10-28 08:40:39 -0500 | 
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-28 08:40:39 -0500 | 
| commit | b6d638c574088538a562950108d6727947ec3fa0 (patch) | |
| tree | 19cd0d1ae9cea46fc27b4d6168b2fcab01bfaf73 | |
| parent | d4f6e81437a21e54984adf8a5d2527a2b0808df5 (diff) | |
| -rw-r--r-- | gui.go | 8 | 
1 files changed, 5 insertions, 3 deletions
@@ -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  | 
