from typing import Protocol class SendGameStateInterface(Protocol): async def send_game_state(self) -> None: ...