wip: Changed cmd_help and cmd_ls to include command descriptions.

This commit is contained in:
Paul Gauthier 2023-05-10 11:21:46 -07:00
parent 6076cd0fb7
commit c169bdf4ba

View file

@ -3,9 +3,11 @@ class Commands:
self.console = console
def cmd_help(self, args):
print("help")
"Show help about all commands"
pass
def cmd_ls(self, args):
"List files and show their chat status"
print("ls")
def get_commands(self):