Skip to content

Instantly share code, notes, and snippets.

@ewilazarus
Created February 12, 2016 23:27
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 ewilazarus/76195fb152e843be7222 to your computer and use it in GitHub Desktop.
Save ewilazarus/76195fb152e843be7222 to your computer and use it in GitHub Desktop.
(defmacro defmw [mw-name mw-logic]
`(defn ~mw-name
[handler]
(fn [request]
~mw-logic)))
(macroexpand-1 '(defmw wrap-options (handler request)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment