12 lines
212 B
Python
12 lines
212 B
Python
class AbstractCommand():
|
|
|
|
def __init__(self, name: str, arg: [str], help_text: str):
|
|
self.name = name;
|
|
self.arg = arg;
|
|
self.help_text = help_text;
|
|
|
|
def execute(self):
|
|
pass
|
|
|
|
def check_arg(self):
|
|
pass |