This commit is contained in:
SathishKannaa-HexrFactory
2025-01-22 16:59:14 +05:30
commit a28398259c
42 changed files with 2313 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
import express from 'express';
import { user } from '../controller/user-Controller';
const router = express.Router();
router.post('/signup',user.signup)
router.post('/login',user.login)
export default router;