wip: Added Commands class with help and ls methods.

This commit is contained in:
Paul Gauthier 2023-05-10 10:49:26 -07:00
parent 24591473e6
commit 300a8b8fce

View file

@ -12,6 +12,12 @@ import sys
import time
import random
class Commands:
def help(self):
print('help')
def ls(self):
print('ls')
class FileContentCompleter(Completer):
def __init__(self, fnames):