Improved cli

This commit is contained in:
2020-12-16 13:38:08 +01:00
parent 97b4f516a8
commit 88362006ef
10 changed files with 146 additions and 11 deletions

View File

@@ -0,0 +1,10 @@
from abc import ABC, abstractmethod
class CommandBase(ABC):
@abstractmethod
def __init__(self): pass
@abstractmethod
def run(self, args: list[str]): pass