From da3684ca6003f49ca4d9df201be19c471d66a9a3 Mon Sep 17 00:00:00 2001 From: Travis Shears Date: Mon, 3 Nov 2025 09:06:58 +0100 Subject: [PATCH] Remove 'TODO' text --- src/cli_cms/create.clj | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/cli_cms/create.clj b/src/cli_cms/create.clj index e1521b0..f277cee 100644 --- a/src/cli_cms/create.clj +++ b/src/cli_cms/create.clj @@ -17,9 +17,7 @@ slug (utils/prompt-for "slug") tags (utils/prompt-for-many "tags") markdown (utils/prompt-for-long-form "markdown")] - ;; (utils/print "Please enter a title:") - ;; (println "Please enter a title:") - (println (format "TODO: create post with title: %s and slug %s" title slug)) + (println (format "Created post with title: %s and slug %s" title slug)) (println tags) (println markdown) (create-snippet {:title title :slug slug :markdown markdown :tags tags})))