Added build command to cli
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user