diff options
| author | ckrinitsin <101062646+ckrinitsin@users.noreply.github.com> | 2025-04-24 23:54:17 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-24 23:54:17 +0200 |
| commit | b75c7c6a9a040af03ef8b498c88c267bfa00aaf4 (patch) | |
| tree | 8b30f8b1269fe985a1fe0d5cca8b771a6e7484ff /go.mod | |
| parent | 1e974f70a6c262d0b5db8b177ebb02b46446bfb0 (diff) | |
| download | shopping-list-b75c7c6a9a040af03ef8b498c88c267bfa00aaf4.tar.gz shopping-list-b75c7c6a9a040af03ef8b498c88c267bfa00aaf4.zip | |
Authentication (#1)
* add login and register templates * add jwt and gin-contrib dependencies * add List database table * add authentication * add logout
Diffstat (limited to 'go.mod')
| -rw-r--r-- | go.mod | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/go.mod b/go.mod index f90c2b2..4af3420 100644 --- a/go.mod +++ b/go.mod @@ -8,12 +8,17 @@ require ( github.com/cloudwego/base64x v0.1.5 // indirect github.com/cloudwego/iasm v0.2.0 // indirect github.com/gabriel-vasile/mimetype v1.4.8 // indirect + github.com/gin-contrib/sessions v1.0.3 // indirect github.com/gin-contrib/sse v1.1.0 // indirect github.com/gin-gonic/gin v1.10.0 // indirect github.com/go-playground/locales v0.14.1 // indirect github.com/go-playground/universal-translator v0.18.1 // indirect github.com/go-playground/validator/v10 v10.26.0 // indirect github.com/goccy/go-json v0.10.5 // indirect + github.com/golang-jwt/jwt/v5 v5.2.2 // indirect + github.com/gorilla/context v1.1.2 // indirect + github.com/gorilla/securecookie v1.1.2 // indirect + github.com/gorilla/sessions v1.4.0 // indirect github.com/jinzhu/inflection v1.0.0 // indirect github.com/jinzhu/now v1.1.5 // indirect github.com/json-iterator/go v1.1.12 // indirect |