diff options
Diffstat (limited to 'app/app.lisp')
-rw-r--r-- | app/app.lisp | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/app/app.lisp b/app/app.lisp index a4ff596..5af7006 100644 --- a/app/app.lisp +++ b/app/app.lisp @@ -28,7 +28,28 @@ (defun toplevel/subcommands () "Returns a list of the subcommands for the top level command" (list - (search/command))) + (search/command) + (run/command) + (clip/command) + (show/command) + (draft/command) + )) + + +;; ol delete <ID> + +;; ol account login <USER> <PW> +;; ol account logout +;; ol account signature <new sig> +;; ol account password <new pw> <repeat> +;; ol account whois <user> +;; ol invite new +;; ol invite redeem + +;; ol account use <SERVER> ;; for switchign servers + +;; new edit delete publish trash drafts flag unflag lockated unlock +;; redeem login logout password signature whois (defun toplevel/handler (cmd) "Prints usage statement and then exits" |