Skip to content

Instantly share code, notes, and snippets.

@weavejester
Forked from sunkencity/gist:3736683
Created September 17, 2012 11:25
Show Gist options
  • Save weavejester/3736775 to your computer and use it in GitHub Desktop.
Save weavejester/3736775 to your computer and use it in GitHub Desktop.
compojure test
(def action-show
"Action that shows the help and about page."
(GET "/help" [account member]
(normal-layout account
[:div
[:h1 "Title"]
[:p "lorem"]])
(defroutes app-routes
index/action-show
help/action-show)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment