Skip to content

Commit 3ec6187

Browse files
leighmccullochbartekn
authored andcommitted
Update imports to make this repo no longer a fork in terms of import paths (#2)
1 parent dfc1b68 commit 3ec6187

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

doc.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
// Package throttled implements rate limiting access to resources such
22
// as HTTP endpoints.
3-
package throttled // import "github.com/throttled/throttled"
3+
package throttled // import "github.com/bartekn/throttled"

http_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"testing"
88
"time"
99

10-
"github.com/throttled/throttled"
10+
"github.com/bartekn/throttled"
1111
)
1212

1313
type stubLimiter struct {

rate_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"testing"
55
"time"
66

7-
"github.com/throttled/throttled"
7+
"github.com/bartekn/throttled"
88
)
99

1010
type clockFixed time.Time

varyby_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"net/url"
66
"testing"
77

8-
"github.com/throttled/throttled"
8+
"github.com/bartekn/throttled"
99
)
1010

1111
func TestVaryBy(t *testing.T) {

0 commit comments

Comments
 (0)