Pruned useless routing scaffold

This commit is contained in:
2022-05-25 10:39:11 -07:00
parent 5596da2f2f
commit a2044941a6
3 changed files with 8 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
import express, { Request, Response, Router, Express } from "express";
import express, { Router, Express } from "express";
import bodyParser from "body-parser";
import path from "path";
import router from "./route";
// call express
const app: Express = express(); // define our app using express

View File

@@ -0,0 +1,3 @@
import opds from "./routes/dummy.routes";
export default { opds };

View File

@@ -0,0 +1,3 @@
import router from "../router";
export default router;