Files
2026-06-19 22:17:09 -03:00

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: ...