Initial commit

This commit is contained in:
2022-12-24 14:32:13 +01:00
commit 3996e37682
17 changed files with 10283 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
import express from 'express';
export abstract class CommonRoutesConfig {
app: express.Application;
name: string;
constructor(app: express.Application, name: string) {
this.app = app;
this.name = name;
this.configureRoutes();
}
getName() {
return this.name;
}
abstract configureRoutes(): express.Application;
}