Skip to content

Instantly share code, notes, and snippets.

@maxweber
Created March 2, 2011 14:27
Show Gist options
  • Save maxweber/851009 to your computer and use it in GitHub Desktop.
Save maxweber/851009 to your computer and use it in GitHub Desktop.
The clj-http.client get function.
(defn get
"Like #'request, but sets the :method and :url as appropriate."
[url & [req]]
(request (merge req {:method :get :url url})))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment