Improved commands

This commit is contained in:
2021-03-04 17:36:02 +01:00
parent 266f9945f4
commit 956a107d38
3 changed files with 19 additions and 6 deletions

View File

@@ -0,0 +1,13 @@
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