Skip to content

Commit 1eafd60

Browse files
committed
chore: update module references
1 parent 1eaf7c5 commit 1eafd60

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

doc.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Usage:
1010
"database/sql"
1111
1212
redis "github.com/go-redis/redis/v7"
13-
"github.com/hellodword/sqlcache"
13+
"github.com/pushmarket/sqlcache"
1414
"github.com/jackc/pgx/v4/stdlib"
1515
)
1616

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/hellodword/sqlcache
1+
module github.com/pushmarket/sqlcache
22

33
go 1.14
44

interceptor.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"sync/atomic"
88
"time"
99

10-
"github.com/hellodword/sqlcache/cache"
10+
"github.com/pushmarket/sqlcache/cache"
1111
"github.com/ngrok/sqlmw"
1212
)
1313

recorder.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"database/sql/driver"
55
"io"
66

7-
"github.com/hellodword/sqlcache/cache"
7+
"github.com/pushmarket/sqlcache/cache"
88
)
99

1010
func newRowsRecorder(setter func(item *cache.Item), rows driver.Rows, maxRows int) *rowsRecorder {

rows_cached.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"database/sql/driver"
55
"io"
66

7-
"github.com/hellodword/sqlcache/cache"
7+
"github.com/pushmarket/sqlcache/cache"
88
)
99

1010
// rowsCached implements driver.Rows interface

0 commit comments

Comments
 (0)