wisdom #2

Merged
yogiedigital merged 126 commits from wisdom into main 2025-10-20 03:26:33 +00:00
Showing only changes of commit 7b2509ffa1 - Show all commits

11
routes/auth.route.js Normal file
View File

@@ -0,0 +1,11 @@
const express = require('express');
const authController = require("../controllers/auth.controller");
const router = express.Router();
router.post('/login', authController.login);
router.post('/register', authController.register);
router.get('/generate-captcha', authController.generateCaptcha);
// router.post('/verify-captcha', authController.verifyCaptcha);
module.exports = router;