feat(wip): google auth route

This commit is contained in:
karishmas6
2024-09-15 17:54:38 +05:30
parent 9780967177
commit fe80d84e5f

View File

@@ -1,4 +1,6 @@
import { Router } from 'express';
export const router = Router();
router.post('/auth/google', googleLogin)
router.post('/auth/google', (req, res) => {
res.send('Google auth');
});