JenaAI-NEW / modules /mcp_handler /interface.py
Saidie000's picture
Upload 83 files
09f1b19 verified
raw
history blame contribute delete
209 Bytes
"""MCP handler interface."""
from __future__ import annotations
from typing import Protocol
class MCPHandlerInterface(Protocol):
async def route(self, channel: str, payload: dict) -> None:
...