prompt for all data needed to create snippet
This commit is contained in:
parent
4c1021cfd0
commit
ad56963220
4 changed files with 54 additions and 3 deletions
|
|
@ -1,8 +1,10 @@
|
|||
(ns cli-cms.main
|
||||
(:require [babashka.http-client :as http]))
|
||||
(:require
|
||||
[cli-cms.create :as create]
|
||||
[babashka.http-client :as http]))
|
||||
|
||||
(defn -main [& args]
|
||||
(case (first args)
|
||||
"create" (println "TODO: implment create snippet")
|
||||
"create" (create/run)
|
||||
"edit" (println "TODO: implment edit snippet")
|
||||
(println "Missing command. Try 'create' or 'edit'.")))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue