Skip to content

Commit

Permalink
feat: convert all sub packages and examples as go modules
Browse files Browse the repository at this point in the history
  • Loading branch information
vividvilla committed Sep 5, 2018
1 parent be04b55 commit 6c238fc
Show file tree
Hide file tree
Showing 9 changed files with 8 additions and 9 deletions.
1 change: 1 addition & 0 deletions examples/fasthttp-inmemory/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module github.com/vividvilla/simplesessions/examples/fasthttp-inmemory
1 change: 1 addition & 0 deletions examples/fasthttp-redis/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module github.com/vividvilla/simplesessions/examples/fasthttp-redis
1 change: 1 addition & 0 deletions examples/nethttp-inmemory/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module github.com/vividvilla/simplesessions/examples/nethttp-inmemory
1 change: 1 addition & 0 deletions examples/nethttp-redis/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module github.com/vividvilla/simplesessions/examples/nethttp-redis
1 change: 1 addition & 0 deletions examples/nethttp-secure-cookie/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module github.com/vividvilla/simplesessions/examples/nethttp-secure-cookie
9 changes: 0 additions & 9 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,16 +1,7 @@
module github.com/vividvilla/simplesessions

require (
github.com/alicebob/gopher-json v0.0.0-20180125190556-5a6b3ba71ee6 // indirect
github.com/alicebob/miniredis v0.0.0-20180903194238-a6a1e4126522
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/gomodule/redigo v2.0.0+incompatible
github.com/gorilla/securecookie v1.1.1
github.com/klauspost/compress v1.4.0 // indirect
github.com/klauspost/cpuid v0.0.0-20180405133222-e7e905edc00e // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/stretchr/testify v1.2.2
github.com/valyala/bytebufferpool v0.0.0-20160817181652-e746df99fe4a // indirect
github.com/valyala/fasthttp v0.0.0-20180901052036-d7688109a57b
github.com/yuin/gopher-lua v0.0.0-20180827083657-b942cacc89fe // indirect
)
1 change: 1 addition & 0 deletions stores/memory/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module github.com/vividvilla/simplesessions/stores/memory
1 change: 1 addition & 0 deletions stores/redis/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module github.com/vividvilla/simplesessions/stores/redis
1 change: 1 addition & 0 deletions stores/securecookie/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module github.com/vividvilla/simplesessions/stores/securecookie

0 comments on commit 6c238fc

Please sign in to comment.