Files
fairhopper/hopper/interfaces.py
Eden Kirin fa2aee881d Cleanups
2023-03-26 23:59:15 +02:00

7 lines
127 B
Python

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