diff options
author | Colin Okay <colin@cicadas.surf> | 2022-08-05 08:58:35 -0500 |
---|---|---|
committer | Colin Okay <colin@cicadas.surf> | 2022-08-05 08:58:35 -0500 |
commit | f116178dcf8b450c76400e2a0fbd2991f2c227b4 (patch) | |
tree | 67fcc6a6e7035eb0b1929e495bceca2dc4fa564b /app/app.lisp | |
parent | 5c590a614544c977964692e41b0e5c19043b142c (diff) |
[wip] [refactor] [add] subcommands.
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" |