7 lines
125 B
Python
7 lines
125 B
Python
from typing import Protocol
|
|
|
|
|
|
class SendGameDumpInterface(Protocol):
|
|
async def send_game_dump(self) -> None:
|
|
...
|