Added build command to cli

This commit is contained in:
2020-12-16 16:47:31 +01:00
parent e9c20061d1
commit 3374ffe8db
8 changed files with 104 additions and 112 deletions

View File

@@ -1,12 +1,15 @@
from abc import ABC, abstractmethod
from sh_edraft.console.console import Console
class CommandBase(ABC):
@abstractmethod
def __init__(self): pass
def __init__(self):
self._aliases: list[str] = []
@property
def aliases(self):
return self._aliases
@abstractmethod
def run(self, args: list[str]): pass