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