Skip to content

Instantly share code, notes, and snippets.

@lispnik
Created September 16, 2011 03:56
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 lispnik/1221164 to your computer and use it in GitHub Desktop.
Save lispnik/1221164 to your computer and use it in GitHub Desktop.
(defroutes main-routes
(GET "/" req (index-html req))
(GET "/admin" req (example-html req))
(GET "/user" req (example-html req))
(GET "/other" req (example-html req))
(route/resources "/")
(route/not-found "Page not found"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment