feat: initial setup

This commit is contained in:
Sathishkumar Krishnan
2021-12-21 14:53:14 +05:30
parent 6ea5b6002a
commit c29fa95461
9 changed files with 5771 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
const router = require("express").Router();
const controller = require("./user.controller");
router.get("/:id", controller.getUser);
module.exports = router;