Skip to content

Instantly share code, notes, and snippets.

@christianberg
Created June 9, 2010 09:37
Show Gist options
  • Save christianberg/431270 to your computer and use it in GitHub Desktop.
Save christianberg/431270 to your computer and use it in GitHub Desktop.
(defroutes public-routes
(GET "/" [] (main-page)))
(defroutes admin-routes
(GET "/admin/new" [] (render-page "New Post" new-form))
(POST "/admin/post" [title body] (create-post title body)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment