from typing import Protocol class SendGameDumpInterface(Protocol): async def send_game_dump(self) -> None: ...