Spaces:
Runtime error
Runtime error
| """MCP handler interface.""" | |
| from __future__ import annotations | |
| from typing import Protocol | |
| class MCPHandlerInterface(Protocol): | |
| async def route(self, channel: str, payload: dict) -> None: | |
| ... | |