l3nz / cli-matic

Compact, hands-free [sub]command line parsing library for Clojure.
Eclipse Public License 2.0
360 stars 28 forks source link

[Ftr] importing jsonfile with keys of type keyword instead of string #131

Open matteoredaelli opened 3 years ago

matteoredaelli commented 3 years ago

Is it possibile to set an option for importing jsonfile with keyworks instead of strings?

I see you use https://github.com/dakrone/cheshire and it is possible using

;; parse some json and get keywords back (parse-string "{\"foo\":\"bar\"}" true) ;; => {:foo "bar"}