/** * Base controller interface * Controllers handle incoming requests and orchestrate the execution of use cases */ export interface IController { readonly _type: 'controller'; } //# sourceMappingURL=IController.d.ts.map