Files
fairhopper/hopper/interfaces.py
2023-03-30 11:32:16 +02:00

7 lines
125 B
Python

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