diff options
author | Colin Okay <okay@toyful.space> | 2022-02-17 16:02:25 -0600 |
---|---|---|
committer | Colin Okay <okay@toyful.space> | 2022-02-17 16:02:25 -0600 |
commit | ef3741726fcda3962e29110d49b4105a2ac40e50 (patch) | |
tree | bfa249b94bff7e8572bf6f5ea0bf95fb487f7565 /build-app.lisp | |
parent | 9844f6ae2512e7da6910e51c2d0d0f7da1550663 (diff) |
Beginning work on the CLON based CLI parsing
Diffstat (limited to 'build-app.lisp')
-rw-r--r-- | build-app.lisp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/build-app.lisp b/build-app.lisp new file mode 100644 index 0000000..c5a6f25 --- /dev/null +++ b/build-app.lisp @@ -0,0 +1,12 @@ +(asdf:load-system "oneliners.cli") + +(defpackage #:oneliners.cli.app + (:use #:cl #:net.didierverna.clon)) + +(in-package :oneliners.cli.app) + +(defsynopsis (:postfix "ARGS ...") + (text :contents "This is some arbitrary text.") + (group (:header "Group 1"))) + + |