prompt for all data needed to create snippet

This commit is contained in:
Travis Shears 2025-06-07 17:51:50 +02:00
parent 4c1021cfd0
commit ad56963220
4 changed files with 54 additions and 3 deletions

View file

@ -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'.")))