From 3360be86fb6a595659c17f272d0c6072e512c154 Mon Sep 17 00:00:00 2001 From: Bobby <30593201+luciferreeves@users.noreply.github.com> Date: Wed, 11 Feb 2026 14:53:34 +0530 Subject: Implement OpenID authentication flow, including user session management and user info retrieval --- go.mod | 3 +++ 1 file changed, 3 insertions(+) (limited to 'go.mod') diff --git a/go.mod b/go.mod index 70335e5..d99eb8e 100644 --- a/go.mod +++ b/go.mod @@ -3,17 +3,20 @@ module cafe go 1.25.5 require ( + github.com/coreos/go-oidc/v3 v3.17.0 github.com/flosch/pongo2/v6 v6.0.0 github.com/gofiber/fiber/v2 v2.52.10 github.com/gofiber/storage/postgres/v3 v3.3.1 github.com/gofiber/template/django/v3 v3.1.14 github.com/joho/godotenv v1.5.1 + golang.org/x/oauth2 v0.35.0 gorm.io/driver/postgres v1.6.0 gorm.io/gorm v1.31.1 ) require ( github.com/andybalholm/brotli v1.1.0 // indirect + github.com/go-jose/go-jose/v4 v4.1.3 // indirect github.com/gofiber/template v1.8.3 // indirect github.com/gofiber/utils v1.1.0 // indirect github.com/google/uuid v1.6.0 // indirect -- cgit v1.2.3