Added abort to command
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2021-04-11 14:10:14 +02:00
parent 203b513c9e
commit 964a072e80
4 changed files with 27 additions and 10 deletions

View File

@@ -8,6 +8,10 @@ class AbstractCommand(ABC):
def execute(self):
pass
@abstractmethod
def abort(self):
pass
@abstractmethod
def describe(self) -> dict:
pass