sh_cpl/src/sh_edraft/cli/command/base/command_base.py

11 lines
174 B
Python
Raw Normal View History

2020-12-16 13:38:08 +01:00
from abc import ABC, abstractmethod
class CommandBase(ABC):
@abstractmethod
def __init__(self): pass
@abstractmethod
def run(self, args: list[str]): pass