Skip to content

Instantly share code, notes, and snippets.

@qharlie
Created July 12, 2012 22:47
Show Gist options
  • Save qharlie/3101575 to your computer and use it in GitHub Desktop.
Save qharlie/3101575 to your computer and use it in GitHub Desktop.
(defroutes main-routes
(GET "/" [] (show-search-page))
(GET "/search" [term] (handle-search term))
(GET "/ban" [ip] (handle-ban ip)
(GET "/unban" [ip] (handle-unban ip))
(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