mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2025-04-23 01:01:30 +00: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;
|