import type { Express } from 'express';

export interface Controller {
  bootstrapRoutes(app: Express): void;
}