Merge branch 'version-2' of https://github.com/Frooodle/Stirling-PDF into version-2

This commit is contained in:
Saud Fatayerji
2023-11-13 02:52:01 +03:00
31 changed files with 99 additions and 129 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';
import conversions from './conversions-controller';
@@ -13,6 +13,6 @@ router.get("/", (req: Request, res: Response) => {
router.use("/operations", operations);
router.use("/conversions", conversions);
//router.use("/workflow", workflow);
router.use("/workflow", workflow);
export default router;