File size: 315 Bytes
8b105ad |
1 2 3 4 5 6 7 8 9 10 |
const express = require('express');
const { redirectToGoogleOAuth, handleOAuthCallback } = require('../controller/authController');
const router = express.Router();
// Define the /auth routes
router.get('/auth', redirectToGoogleOAuth);
router.get('/oauth2callback', handleOAuthCallback);
module.exports = router; |