From 29b633d7b4c6a719a6d6fa23a5da0bc927dcc575 Mon Sep 17 00:00:00 2001 From: Saud Fatayerji Date: Fri, 27 Oct 2023 00:01:04 +0300 Subject: [PATCH] bug fix --- server-node/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server-node/index.js b/server-node/index.js index a0b5fecb..bfaa92a0 100644 --- a/server-node/index.js +++ b/server-node/index.js @@ -14,7 +14,7 @@ app.get('/', function (req, res, next) { // TODO: Use EJS? }); app.use("/api/operations", operations); -app.use("/api/workflow", workflow); +//app.use("/api/workflow", workflow); app.listen(PORT, function (err) { if (err) console.log(err);