summaryrefslogtreecommitdiff
path: root/cacheDir.go
diff options
context:
space:
mode:
Diffstat (limited to 'cacheDir.go')
-rw-r--r--cacheDir.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/cacheDir.go b/cacheDir.go
index feca9ab..400944e 100644
--- a/cacheDir.go
+++ b/cacheDir.go
@@ -16,13 +16,13 @@ import (
"fmt"
"os"
- "go.wit.com/lib/ENV"
+ "go.wit.com/lib/env"
"google.golang.org/protobuf/proto"
)
// loads foo.proto from ~/.cache/<appname>/foo.pb
func LoadCacheDir(pb proto.Message) error {
- appname, err := ENV.GetAppname() // already configured by your application
+ appname, err := env.GetAppname() // already configured by your application
if err != nil {
return err
}