first commit

This commit is contained in:
CHIEFSOFT\ameye
2024-05-06 10:14:26 -04:00
commit 2692a07db8
10 changed files with 1553 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
import express from "express"
import { fetch,create } from "../controller/userController.js"
const route = express.Router();
route.post("/create",create);
route.get("/fetch", fetch)
export default route;