From a97f47bedc84b396971ce28f14c5ea095ea68950 Mon Sep 17 00:00:00 2001 From: sahithiharness Date: Fri, 5 Apr 2024 00:07:36 +0530 Subject: [PATCH] changed v3 version --- autoload/autoload.go | 2 +- cmd/godotenv/cmd.go | 2 +- go.mod | 3 +-- 3 files changed, 3 insertions(+), 4 deletions(-) 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