Skip to content

Commit 401200d

Browse files
committed
rename repo from retry-go to retry
1 parent fb64456 commit 401200d

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

examples/custom_retry_function_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"testing"
1111
"time"
1212

13-
"github.com/codeGROOVE-dev/retry-go"
13+
"github.com/codeGROOVE-dev/retry"
1414
)
1515

1616
// RetriableError is a custom error that contains a positive duration for the next retry.

examples/delay_based_on_error_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"testing"
1212
"time"
1313

14-
"github.com/codeGROOVE-dev/retry-go"
14+
"github.com/codeGROOVE-dev/retry"
1515
)
1616

1717
type RetryAfterError struct {

examples/errors_history_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"net/http/httptest"
77
"testing"
88

9-
"github.com/codeGROOVE-dev/retry-go"
9+
"github.com/codeGROOVE-dev/retry"
1010
)
1111

1212
// TestErrorHistory shows an example of how to get all the previous errors when

examples/http_get_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"net/http/httptest"
88
"testing"
99

10-
"github.com/codeGROOVE-dev/retry-go"
10+
"github.com/codeGROOVE-dev/retry"
1111
)
1212

1313
func TestGet(t *testing.T) {

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
module github.com/codeGROOVE-dev/retry-go
1+
module github.com/codeGROOVE-dev/retry
22

33
go 1.22

0 commit comments

Comments
 (0)