Some implementation in classes; add JSDOC

This commit is contained in:
2023-10-02 17:17:36 +02:00
parent 4bbcf63940
commit 076dd1a717
9 changed files with 357 additions and 22 deletions

View File

@@ -3,7 +3,11 @@ import createError from 'http-errors';
import logger from 'morgan';
import express from 'express';
import path from 'path';
import * as dotenv from 'dotenv';
import router from './routes/index.mjs';
dotenv.config();
let indexRouter = router;
let app = express();