diff options
| author | Jeff Carr <[email protected]> | 2025-10-22 05:37:05 -0500 | 
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-22 05:37:05 -0500 | 
| commit | b939725f9441057ace43b3cb20bdbca3f3d1bcba (patch) | |
| tree | 0ad9221abc7307bea9616f82d87cb4d86cf22b9d | |
| parent | ec2b91047531fcaba31fa587c642f994490ef863 (diff) | |
use ENVv0.21.65
| -rw-r--r-- | argv.template.go | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/argv.template.go b/argv.template.go index e7a9948..1808722 100644 --- a/argv.template.go +++ b/argv.template.go @@ -10,6 +10,7 @@ import (  	"go.wit.com/dev/alexflint/arg"  	"go.wit.com/gui" +	"go.wit.com/lib/ENV"  	"go.wit.com/lib/fhelp"  	"go.wit.com/log"  ) @@ -63,7 +64,7 @@ func (args) InitGui() error {  func (args) Exit() {  	gui.UnloadToolkits() -	if me.argv.Verbose() { +	if ENV.Verbose() {  		log.Info("argv.Exit() called", APPNAME+".Exit()")  	}  	// remove this from the template for your app (or make one for youself if you need it)  | 
