1
0
Fork 0

Adding upstream version 1.0.1.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-05-18 15:03:50 +02:00
parent 4e9dbb046b
commit f55bad51a1
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
24 changed files with 2680 additions and 0 deletions

23
go.mod Normal file
View file

@ -0,0 +1,23 @@
module code.forgejo.org/go-chi/session
go 1.23
toolchain go1.23.4
require (
github.com/bradfitz/gomemcache v0.0.0-20230905024940-24af94b03874
github.com/go-chi/chi/v5 v5.1.0
github.com/go-sql-driver/mysql v1.8.1
github.com/lib/pq v1.10.9
github.com/redis/go-redis/v9 v9.7.0
github.com/stretchr/testify v1.10.0
)
require (
filippo.io/edwards25519 v1.1.0 // indirect
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)