Skip to content

Instantly share code, notes, and snippets.

@escherize
Created May 10, 2015 08:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save escherize/d629b6bd93ac00fa96fc to your computer and use it in GitHub Desktop.
Save escherize/d629b6bd93ac00fa96fc to your computer and use it in GitHub Desktop.
(defn log-response [callback]
(fn [response]
(.log js/console response)
(callback response)))
(GET "/articles" {:handler (log-response articles-list)
:error-handler (log-resoonse error-handler)})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment