mirror of
https://github.com/hoshikawa2/agent_platform_oci.git
synced 2026-07-09 14:04:19 +00:00
10 lines
222 B
Python
10 lines
222 B
Python
from __future__ import annotations
|
|
|
|
from typing import Protocol
|
|
from app.schemas import GatewayRequest
|
|
|
|
|
|
class ChannelAdapter(Protocol):
|
|
name: str
|
|
async def to_gateway_request(self, payload) -> GatewayRequest: ...
|