File size: 263 Bytes
1628025
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
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}`);
  }
}