ft_transcendence/command.py
2023-11-21 16:08:23 +01:00

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