UNPKG
chess-mcp
Version:
latest (0.0.7)
0.0.7
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
Chess MCP server with position evaluation, move validation, and masters database
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