Skip to content

Instantly share code, notes, and snippets.

@lynndylanhurley
Last active August 29, 2015 14:24
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 lynndylanhurley/695495f7584c1295a75f to your computer and use it in GitHub Desktop.
Save lynndylanhurley/695495f7584c1295a75f to your computer and use it in GitHub Desktop.
(defmacro foo-route []
`["/x" {:get 'foo-handler}])
(defroutes routes
[[["/"
;; I'm trying to do this, but it does NOT work
["/foo" (foo-route)]
;; this does work
["/bar" ["/" {:get bar-handler}]]]]])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment