-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: refactor examples module structure
- Loading branch information
1 parent
1b74c80
commit aaa20eb
Showing
13 changed files
with
51 additions
and
174 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
module github.com/vividvilla/simplesessions/examples | ||
|
||
go 1.18 | ||
|
||
require ( | ||
github.com/redis/go-redis/v9 v9.5.1 | ||
github.com/valyala/fasthttp v1.44.0 | ||
github.com/vividvilla/simplesessions/stores/memory/v3 v3.0.0 | ||
github.com/vividvilla/simplesessions/stores/redis/v3 v3.0.0 | ||
github.com/vividvilla/simplesessions/stores/securecookie/v3 v3.0.0 | ||
github.com/vividvilla/simplesessions/v3 v3.0.0 | ||
github.com/zerodha/fastglue v1.8.0 | ||
) | ||
|
||
require ( | ||
github.com/andybalholm/brotli v1.0.4 // indirect | ||
github.com/cespare/xxhash/v2 v2.3.0 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect | ||
github.com/fasthttp/router v1.4.5 // indirect | ||
github.com/gorilla/securecookie v1.1.2 // indirect | ||
github.com/klauspost/compress v1.15.9 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/savsgio/gotils v0.0.0-20211223103454-d0aaa54c5899 // indirect | ||
github.com/stretchr/testify v1.9.0 // indirect | ||
github.com/valyala/bytebufferpool v1.0.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) | ||
|
||
replace ( | ||
github.com/vividvilla/simplesessions/stores/memory/v3 => ../stores/memory | ||
github.com/vividvilla/simplesessions/stores/redis/v3 => ../stores/redis | ||
github.com/vividvilla/simplesessions/stores/securecookie/v3 => ../stores/securecookie | ||
github.com/vividvilla/simplesessions/v3 => ../ | ||
) |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,4 +6,5 @@ use ( | |
./stores/postgres | ||
./stores/redis | ||
./stores/securecookie | ||
./examples | ||
) |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,14 @@ | ||
module github.com/vividvilla/simplesessions/stores/securecookie/v3 | ||
|
||
go 1.14 | ||
go 1.18 | ||
|
||
require ( | ||
github.com/gorilla/securecookie v1.1.2 | ||
github.com/stretchr/testify v1.9.0 | ||
) | ||
|
||
require ( | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |