Skip to content

Instantly share code, notes, and snippets.

@weavejester
Forked from JustinTulloss/gist:75611
Created March 9, 2009 22:06
Show Gist options
  • Save weavejester/76507 to your computer and use it in GitHub Desktop.
Save weavejester/76507 to your computer and use it in GitHub Desktop.
(ns flockr
(:use compojure))
(defn index []
(html
[:h1 "Flockr"]
[:h2 "Twitter Portal"]))
(defservlet home
(GET "/"
(index)))
(run-server {:port 8080}
"/*" home)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment