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

9 lines
147 B
Python

from command import AbstractCommand
class Login(AbstractCommand):
def check_arg(self):
return len(self.arg) < 2
def execute(self) -> str: