UNPKG
@iflow-mcp/chess-mcp
Version:
latest (1.0.0)
1.0.0
0.0.9
0.0.8
0.0.7
Chess MCP server with position evaluation, move validation, and masters database
@iflow-mcp/chess-mcp
/
build
/
handlers
/
types.js
12 lines
•
281 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
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