modarb-be / src /lib /controllers /controller.base.ts
moahmedwafy's picture
feat: auto find routes and controllers
1628025
raw
history blame
263 Bytes
import { Router } from "express";
export abstract class BaseController {
public static router: Router = Router();
public static prefix: string = "/";
public static setRoutes(_router: Router) {
throw new Error(`routes not set for ${this.name}`);
}
}