File size: 181 Bytes
1628025
 
 
ac9dbd5
 
1628025
ac9dbd5
1628025
1
2
3
4
5
6
7
8
9
import { Router } from "express";

export abstract class BaseController {
  public router: Router = Router();
  public prefix: string = "/";

  public abstract setRoutes(): void;
}