diff --git a/aider/getinput.py b/aider/getinput.py index bccaf0245..b7f58354f 100644 --- a/aider/getinput.py +++ b/aider/getinput.py @@ -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):