Skip to content

Instantly share code, notes, and snippets.

@ikitommi
Created November 28, 2013 05:42
Show Gist options
  • Save ikitommi/7687741 to your computer and use it in GitHub Desktop.
Save ikitommi/7687741 to your computer and use it in GitHub Desktop.
keywordize-keys on ring request
(require '[clojure.walk :as walk])
(defn keywordize-request
[handler]
(fn [request]
(handler
(walk/keywordize-keys request))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment