blob: 2a04c1db141625c39d1165d005ecbf1a7b811b76 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
;;;; app.lisp -- definition of CLI options and entry point.
;; Copyright (C) 2022 Colin Okay
;; This program is free software: you can redistribute it and/or modify
;; it under the terms of the GNU Affero General Public License as
;; published by the Free Software Foundation, either version 3 of the
;; License, or (at your option) any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU Affero General Public License for more details.
;; You should have received a copy of the GNU Affero General Public License
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
(in-package :oneliners.cli.app)
;;; VERSION
(defparameter +ol-version+ "0.8.0")
(defun toplevel/options ()
"Returns a list of the top level command's options"
(list))
(defun toplevel/subcommands ()
"Returns a list of the subcommands for the top level command"
(list
(search/command)
(run/command)
(clip/command)
(show/command)
(draft/command)
(modify/command)
(account/command)))
(defun toplevel/handler (cmd)
"Prints usage statement and then exits"
(cli:print-usage cmd *standard-output*))
(defun toplevel/command ()
"Returns the toplevel command object."
(cli:make-command
:name "ol"
:version +ol-version+
:description "CLI client for oneliners wiki service."
:authors '("Colin Okay <colin@cicadas.surf>")
:license "AGPL-3.0-only"
:handler #'toplevel/handler
:options (toplevel/options)
:sub-commands (toplevel/subcommands)))
(defun main ()
(ol::with-local-state
(cli:run (toplevel/command))
(format t "moooooo~%")))
|