Skip to content

Instantly share code, notes, and snippets.

@tcoupland
Created April 28, 2012 10:53
Show Gist options
  • Save tcoupland/2517940 to your computer and use it in GitHub Desktop.
Save tcoupland/2517940 to your computer and use it in GitHub Desktop.
Simple compojure handler
(ns compojur-learning.core
(:use compojure.core))
(defroutes handler
(GET "/" [] (println "middle") {:status 200}))
(def app (-> handler))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment