Started migrating workflow controller

This commit is contained in:
Felix Kaspar
2023-11-13 00:09:12 +01:00
parent 57142381ca
commit 5ae8cb77ac
29 changed files with 96 additions and 127 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;