diff options
| author | Jeff Carr <[email protected]> | 2025-10-24 18:31:40 -0500 | 
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-24 18:31:40 -0500 | 
| commit | 4286af292a76b26e2799642060847a9cd2a04c0a (patch) | |
| tree | 90945fa5a3841791005a3c583f74f09cb9f5e30b | |
| parent | 27437b8ee937117befcbaccc0a8cb55b4c4928e1 (diff) | |
s/ENV/env/ but ENV really is better herev0.0.111
| -rw-r--r-- | argv.template.go | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/argv.template.go b/argv.template.go index 1808722..6948afe 100644 --- a/argv.template.go +++ b/argv.template.go @@ -10,7 +10,7 @@ import (  	"go.wit.com/dev/alexflint/arg"  	"go.wit.com/gui" -	"go.wit.com/lib/ENV" +	"go.wit.com/lib/env"  	"go.wit.com/lib/fhelp"  	"go.wit.com/log"  ) @@ -64,7 +64,7 @@ func (args) InitGui() error {  func (args) Exit() {  	gui.UnloadToolkits() -	if ENV.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)  | 
