This commit is contained in:
2023-11-21 16:08:23 +01:00
parent fd19180e1d
commit 646e1efea2
7 changed files with 33 additions and 2 deletions

9
login.py Normal file
View File

@ -0,0 +1,9 @@
from command import AbstractCommand
class Login(AbstractCommand):
def check_arg(self):
return len(self.arg) < 2
def execute(self) -> str: