diff --git a/README.md b/README.md index 121aed1..212cfc8 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,11 @@ -# Go Dotenv +# Dotenv A lightweight Go package designed to simplify the configuration of your Go applications by loading environment variables from a `.env` file (or any file of your choice) **Note:** The default `env` file is a ".env" file at the root of the project and the default `logger` writes to `os.Stdout` ## Installation ```bash -go get -u github.com/tonie-ng/go-dotenv +go get -u github.com/tonievictor/dotenv ``` ## Usage @@ -19,7 +19,7 @@ import ( "fmt" "os" - "github.com/tonie-ng/go-dotenv" + "github.com/tonievictor/dotenv" ) func main() { @@ -40,7 +40,7 @@ package main import ( "fmt" - "github.com/tonie-ng/go-dotenv" + "github.com/tonievictor/dotenv" ) func main() { @@ -68,7 +68,7 @@ import ( "log" "os" - "github.com/tonie-ng/go-dotenv" + "github.com/tonievictor/dotenv" ) func main() { @@ -101,7 +101,7 @@ import ( "log" "os" - "github.com/tonie-ng/go-dotenv" + "github.com/tonievictor/dotenv" ) func main() { @@ -120,7 +120,7 @@ func main() { ``` ## Contibutions -Contributions to this project are welcome, please refer to the [contribution](https://github.com/tonie-ng/go-dotenv/blob/main/CONTRIBUTING.md) guide. +Contributions to this project are welcome, please refer to the [contribution](https://github.com/tonievictor/dotenv/blob/main/CONTRIBUTING.md) guide. ## Contributors [Tonie Victor](https://tonie.me) - Author diff --git a/go.mod b/go.mod index 27c7feb..2f821eb 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module github.com/tonie-ng/go-dotenv +module github.com/tonievictor/dotenv -go 1.21.5 +go 1.23.0 diff --git a/tests/comments_test.go b/tests/comments_test.go index 2586443..60f3623 100644 --- a/tests/comments_test.go +++ b/tests/comments_test.go @@ -3,7 +3,7 @@ package dotenvtest import ( "testing" - "github.com/tonie-ng/go-dotenv" + "github.com/tonievictor/dotenv" ) func TestComments(t *testing.T) { diff --git a/tests/file_test.go b/tests/file_test.go index 0028573..ed26634 100644 --- a/tests/file_test.go +++ b/tests/file_test.go @@ -5,7 +5,7 @@ import ( "strings" "testing" - "github.com/tonie-ng/go-dotenv" + "github.com/tonievictor/dotenv" ) func TestFile(t *testing.T) { diff --git a/tests/filename_test.go b/tests/filename_test.go index bd715ee..8ee00f2 100644 --- a/tests/filename_test.go +++ b/tests/filename_test.go @@ -3,7 +3,7 @@ package dotenvtest import ( "testing" - "github.com/tonie-ng/go-dotenv" + "github.com/tonievictor/dotenv" ) func TestFileName(t *testing.T) { diff --git a/tests/key-value_test.go b/tests/key-value_test.go index 6914f07..33c2bbf 100644 --- a/tests/key-value_test.go +++ b/tests/key-value_test.go @@ -3,7 +3,7 @@ package dotenvtest import ( "reflect" "testing" - "github.com/tonie-ng/go-dotenv" + "github.com/tonievictor/dotenv" ) diff --git a/tests/logger_test.go b/tests/logger_test.go index ceb7f3e..3fec61e 100644 --- a/tests/logger_test.go +++ b/tests/logger_test.go @@ -3,7 +3,7 @@ package dotenvtest import ( "testing" - "github.com/tonie-ng/go-dotenv" + "github.com/tonievictor/dotenv" ) func TestLogger(t *testing.T) {