Skip to content

Instantly share code, notes, and snippets.

@bofh
Created August 17, 2015 11:41
Show Gist options
  • Save bofh/e9f41fa373b1b5f270ed to your computer and use it in GitHub Desktop.
Save bofh/e9f41fa373b1b5f270ed to your computer and use it in GitHub Desktop.
(require '[bidi.ring :refer (make-handler)])
(require '[ring.util.response :refer (response)])
(def route-table ["/index.html" :index])
(defn index-page [request]
(response "Hi!"))
(def handler-map
{:index index-page})
(def handler
(make-handler route-table handler-map))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment