14 lines
265 B
Python
14 lines
265 B
Python
|
from abc import abstractmethod
|
||
|
|
||
|
from cpl.dependency_injection.service_abc import ServiceABC
|
||
|
|
||
|
|
||
|
class CommandABC(ServiceABC):
|
||
|
|
||
|
@abstractmethod
|
||
|
def __init__(self):
|
||
|
ServiceABC.__init__(self)
|
||
|
|
||
|
@abstractmethod
|
||
|
def run(self, args: list[str]): pass
|