UNPKG

@memory-bank/mcp

Version:

Memory-enabled Co-Pilot (MCP) server for managing project documentation and context

8 lines 228 B
/** * 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