;;;; show.lisp (in-package :oneliners.cli.app) (defhandler show/handler (id) (ol:print-item-explanation (parse-identifier id))) (defun show/command () (cli:make-command :name "show" :usage "" :description "show detailed information about a oneliner" :handelr #'show/handler ))