ft_transcendence/command.py

12 lines
212 B
Python
Raw Normal View History

2023-11-21 10:08:23 -05:00
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