diff --git a/stores/postgres/go.mod b/stores/postgres/go.mod index 002772c..beb81cc 100644 --- a/stores/postgres/go.mod +++ b/stores/postgres/go.mod @@ -1,5 +1,8 @@ -module github.com/vividvilla/simplesessions/stores/postgres +module github.com/vividvilla/simplesessions/stores/postgres/v3 go 1.14 -require github.com/lib/pq v1.10.9 +require ( + github.com/lib/pq v1.10.9 + github.com/stretchr/testify v1.9.0 +) diff --git a/stores/redis/go.mod b/stores/redis/go.mod index 0177f52..3779bde 100644 --- a/stores/redis/go.mod +++ b/stores/redis/go.mod @@ -6,7 +6,6 @@ require ( github.com/alicebob/miniredis/v2 v2.32.1 github.com/redis/go-redis/v9 v9.5.1 github.com/stretchr/testify v1.9.0 - github.com/vividvilla/simplesessions/conv v1.0.0 ) require ( diff --git a/stores/securecookie/go.mod b/stores/securecookie/go.mod index fbff51e..edeba12 100644 --- a/stores/securecookie/go.mod +++ b/stores/securecookie/go.mod @@ -1,4 +1,4 @@ -module github.com/vividvilla/simplesessions/stores/securecookie/v2 +module github.com/vividvilla/simplesessions/stores/securecookie/v3 go 1.14