From 75d33abe8a7cacb762eee0f6332196226dd40ed3 Mon Sep 17 00:00:00 2001 From: anatoly Date: Fri, 13 Nov 2015 22:06:27 -0500 Subject: [PATCH] using the "--help" param --- test/app/config.clj | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/app/config.clj b/test/app/config.clj index e387049..31a041f 100644 --- a/test/app/config.clj +++ b/test/app/config.clj @@ -5,6 +5,8 @@ (defn load-config [path] (info "loading config from" path) + (if (:help (mount/args)) + (info "\n\nthis is a sample mount app to demo how to pass and read runtime arguments\n")) (-> path slurp edn/read-string))