diff --git a/autoload/autoload.go b/autoload/autoload.go index fbcd2bd..ef20c29 100644 --- a/autoload/autoload.go +++ b/autoload/autoload.go @@ -8,7 +8,7 @@ package autoload And bob's your mother's brother */ -import "github.com/joho/godotenv" +import "github.com/harness/godotenv/v3" func init() { godotenv.Load() diff --git a/cmd/godotenv/cmd.go b/cmd/godotenv/cmd.go index 7dc8f8e..9233049 100644 --- a/cmd/godotenv/cmd.go +++ b/cmd/godotenv/cmd.go @@ -6,7 +6,7 @@ import ( "log" "strings" - "github.com/joho/godotenv" + "github.com/harness/godotenv/v3" ) func main() { diff --git a/go.mod b/go.mod index a1528f5..302647a 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,2 @@ -module github.com/harness/godotenv/v2 - +module github.com/harness/godotenv/v3 go 1.12