feat: added dashboard controllers

This commit is contained in:
Sathishkumar Krishnan
2021-12-29 07:15:34 +05:30
parent cd00c9b7bb
commit 60e6f0cb94
8 changed files with 361 additions and 6 deletions

View File

@@ -0,0 +1,14 @@
const router = require("express").Router();
const controller = require("./dashboard.controller");
/**
* @route /dashboard/create-warehouse-schema
*/
router.post("/create-warehouse-schema", controller.createWarehouseSchema);
/**
* @route /dashboard/create-inventory-schema
*/
router.post("/create-inventory-schema", controller.createInventorySchema);
module.exports = router;