Skip to content

Commit 1ad4c3f

Browse files
committed
Fix module path for v2
1 parent e1b130b commit 1ad4c3f

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
An example of managing network connections:
66

77
```go
8-
import "github.com/mgnsk/evcache"
8+
import "github.com/mgnsk/evcache/v2"
99

1010
func main() {
1111
c := evcache.New().

cache_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"sync/atomic"
99
"time"
1010

11-
"github.com/mgnsk/evcache"
11+
"github.com/mgnsk/evcache/v2"
1212
. "github.com/onsi/ginkgo"
1313
. "github.com/onsi/ginkgo/extensions/table"
1414
. "github.com/onsi/gomega"

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/mgnsk/evcache
1+
module github.com/mgnsk/evcache/v2
22

33
go 1.15
44

suite_test.go

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

11-
"github.com/mgnsk/evcache"
11+
"github.com/mgnsk/evcache/v2"
1212
. "github.com/onsi/ginkgo"
1313
. "github.com/onsi/gomega"
1414
)

0 commit comments

Comments
 (0)