Files
sh_cpl/src/cpl_cli/command_abc.py
2021-03-29 13:29:26 +02:00

12 lines
195 B
Python

from abc import abstractmethod, ABC
class CommandABC(ABC):
@abstractmethod
def __init__(self):
ABC.__init__(self)
@abstractmethod
def run(self, args: list[str]): pass