UNPKG

@iflow-mcp/chess-mcp

Version:

Chess MCP server with position evaluation, move validation, and masters database

12 lines 281 B
export class SimpleHandlerRegistry { constructor() { this.handlers = new Map(); } register(method, handler) { this.handlers.set(method, handler); } get(method) { return this.handlers.get(method); } } //# sourceMappingURL=types.js.map