geoguessr-bot / geoguessr_bot /commands /abstract_command.py
Bastien Dechamps
dinoV2
077dc3f
raw
history blame contribute delete
185 Bytes
from abc import abstractmethod
class AbstractCommand:
"""Abstract class for all commands.
"""
@abstractmethod
def run(self) -> None:
raise NotImplementedError