Created
July 12, 2012 22:51
-
-
Save qharlie/3101623 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defn handle-ban [ip] | |
(ban-ip ip) | |
(str ip " BANNED!")) | |
(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