diff --git a/examples/custom_retry_function_test.go b/examples/custom_retry_function_test.go index a3cb0f6..1b26889 100644 --- a/examples/custom_retry_function_test.go +++ b/examples/custom_retry_function_test.go @@ -10,7 +10,7 @@ import ( "testing" "time" - "github.com/codeGROOVE-dev/retry-go" + "github.com/codeGROOVE-dev/retry" ) // RetriableError is a custom error that contains a positive duration for the next retry. diff --git a/examples/delay_based_on_error_test.go b/examples/delay_based_on_error_test.go index 0f09268..115a540 100644 --- a/examples/delay_based_on_error_test.go +++ b/examples/delay_based_on_error_test.go @@ -11,7 +11,7 @@ import ( "testing" "time" - "github.com/codeGROOVE-dev/retry-go" + "github.com/codeGROOVE-dev/retry" ) type RetryAfterError struct { diff --git a/examples/errors_history_test.go b/examples/errors_history_test.go index a76e7b4..e0f15f8 100644 --- a/examples/errors_history_test.go +++ b/examples/errors_history_test.go @@ -6,7 +6,7 @@ import ( "net/http/httptest" "testing" - "github.com/codeGROOVE-dev/retry-go" + "github.com/codeGROOVE-dev/retry" ) // TestErrorHistory shows an example of how to get all the previous errors when diff --git a/examples/http_get_test.go b/examples/http_get_test.go index 3c8e5ad..83a92e4 100644 --- a/examples/http_get_test.go +++ b/examples/http_get_test.go @@ -7,7 +7,7 @@ import ( "net/http/httptest" "testing" - "github.com/codeGROOVE-dev/retry-go" + "github.com/codeGROOVE-dev/retry" ) func TestGet(t *testing.T) { diff --git a/go.mod b/go.mod index 4209c27..6d54ebd 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module github.com/codeGROOVE-dev/retry-go +module github.com/codeGROOVE-dev/retry go 1.22