Commented out bad code

This commit is contained in:
Saud Fatayerji
2023-11-12 20:58:40 +03:00
parent 8018947353
commit c7dd18695d
3 changed files with 11 additions and 11 deletions

View File

@@ -1,6 +1,6 @@
import express, { Request, Response } from 'express';
import workflow from './workflow-controller';
//import workflow from './workflow-controller';
import operations from './operations-controller';
const router = express.Router();
@@ -11,6 +11,6 @@ router.get("/", (req: Request, res: Response) => {
});
router.use("/operations", operations);
router.use("/workflow", workflow);
//router.use("/workflow", workflow);
export default router;