mirror of
https://github.com/Frooodle/Stirling-PDF.git
synced 2024-12-21 19:08:24 +01:00
12 lines
271 B
JavaScript
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;
|