i-darrshan's picture
initial push of the update
8b105ad
raw
history blame contribute delete
315 Bytes
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;