init project

This commit is contained in:
Travis Shears 2025-06-07 17:31:09 +02:00
commit 4c1021cfd0
6 changed files with 34 additions and 0 deletions

1
src/cli_cms/create.clj Normal file
View file

@ -0,0 +1 @@
(ns cli-cms.create)

1
src/cli_cms/edit.clj Normal file
View file

@ -0,0 +1 @@
(ns cli-cms.edit)

8
src/cli_cms/main.clj Normal file
View file

@ -0,0 +1,8 @@
(ns cli-cms.main
(:require [babashka.http-client :as http]))
(defn -main [& args]
(case (first args)
"create" (println "TODO: implment create snippet")
"edit" (println "TODO: implment edit snippet")
(println "Missing command. Try 'create' or 'edit'.")))