i-darrshan's picture
initial update of the vite site
62c3fe0
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;