anonymous8/RPD-Demo
initial commit
4943752
raw
history blame
255 Bytes
from abc import ABC, abstractmethod
class TextAttackCommand(ABC):
@staticmethod
@abstractmethod
def register_subcommand(parser):
raise NotImplementedError()
@abstractmethod
def run(self):
raise NotImplementedError()