diff options
| author | Jeff Carr <[email protected]> | 2025-10-24 18:31:18 -0500 | 
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-24 18:31:18 -0500 | 
| commit | a9eef24fd4378f0f94897b0d3fd2eb8092f50c8b (patch) | |
| tree | 6f6d00cc53abd72e6e8a473fcfbb3eb7ad170dfb | |
| parent | 2f4fbe24bd3e41394358b7c4fc62836cf5411f7e (diff) | |
s/ENV/env/ but ENV really is better herev0.22.133
| -rw-r--r-- | argv.template.go | 4 | ||||
| -rw-r--r-- | main.go | 4 | 
2 files changed, 4 insertions, 4 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) @@ -6,7 +6,7 @@ import (  	"net/http"  	"strings" -	"go.wit.com/lib/ENV" +	"go.wit.com/lib/env"  	"go.wit.com/lib/protobuf/argvpb"  	"go.wit.com/lib/protobuf/forgepb"  	"go.wit.com/lib/protobuf/gitpb" @@ -77,7 +77,7 @@ func newMakeRepomap() (string, error) {  		r.State = val  		submit.Append(r)  	} -	server := ENV.Get("ForgeURL") +	server := env.Get("ForgeURL")  	updatepb, regPB, err := submit.HttpPost(server, "check")  	if err != nil {  		log.Info("ReposPB HttpPost() failed", err)  | 
