diff options
| author | mo khan <mo@mokhan.ca> | 2025-04-16 16:11:00 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2025-04-16 16:11:00 -0600 |
| commit | 3e70d67683e369d0b86db2bf3ff19df84e990710 (patch) | |
| tree | 5f9d8dd60bdde1466369cc83548199490a19b449 /go.mod | |
| parent | 691e4ba30113cee3508a54fd2383e34f38b55bde (diff) | |
feat: create middleware to parse id token from session cookie
Diffstat (limited to 'go.mod')
| -rw-r--r-- | go.mod | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -5,11 +5,11 @@ go 1.24.0 require ( github.com/coreos/go-oidc/v3 v3.14.1 github.com/oklog/ulid v1.3.1 + github.com/rs/zerolog v1.34.0 github.com/stretchr/testify v1.10.0 github.com/testcontainers/testcontainers-go v0.36.0 github.com/xlgmokha/x v0.0.0-20250416193840-28dfb2084192 golang.org/x/oauth2 v0.29.0 - gotest.tools/v3 v3.5.1 ) require ( @@ -33,13 +33,14 @@ require ( github.com/go-ole/go-ole v1.2.6 // indirect github.com/gogo/protobuf v1.3.2 // indirect github.com/golobby/container/v3 v3.3.2 // indirect - github.com/google/go-cmp v0.7.0 // indirect github.com/google/jsonapi v1.0.0 // indirect github.com/google/uuid v1.6.0 // indirect github.com/joho/godotenv v1.5.1 // indirect github.com/klauspost/compress v1.17.4 // indirect github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect github.com/magiconair/properties v1.8.9 // indirect + github.com/mattn/go-colorable v0.1.14 // indirect + github.com/mattn/go-isatty v0.0.20 // indirect github.com/moby/docker-image-spec v1.3.1 // indirect github.com/moby/patternmatcher v0.6.0 // indirect github.com/moby/sys/sequential v0.5.0 // indirect |
