File size: 209 Bytes
09f1b19
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
"""MCP handler interface."""

from __future__ import annotations

from typing import Protocol


class MCPHandlerInterface(Protocol):
    async def route(self, channel: str, payload: dict) -> None:
        ...