diff options
| -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  | 
