Stirling-PDF/routes/api/index.js
2023-10-19 19:46:23 +02:00

12 lines
271 B
JavaScript

import express from 'express';
import workflow from './workflow.js';
const router = express.Router();
router.get("/", function (req, res, next) {
res.status(501).json({"Error": "Unfinished Endpoint"});
});
router.use("/workflow", workflow);
export default router;