From fe80d84e5f005ed171969b37aa72bda7b02e26e4 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Sun, 15 Sep 2024 17:54:38 +0530 Subject: [PATCH] feat(wip): google auth route --- server/src/routes/auth.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/server/src/routes/auth.ts b/server/src/routes/auth.ts index b00e5ec9..74a33d93 100644 --- a/server/src/routes/auth.ts +++ b/server/src/routes/auth.ts @@ -1,4 +1,6 @@ import { Router } from 'express'; export const router = Router(); -router.post('/auth/google', googleLogin) \ No newline at end of file +router.post('/auth/google', (req, res) => { + res.send('Google auth'); +}); \ No newline at end of file