Skip to content

Instantly share code, notes, and snippets.

@r-moeritz
Created June 16, 2011 19:07
Show Gist options
  • Save r-moeritz/1029985 to your computer and use it in GitHub Desktop.
Save r-moeritz/1029985 to your computer and use it in GitHub Desktop.
hello jwt in clojure : core.clj
(ns jwt-examples.core
(:use [jetty-wrapper.core :only [run-server]])
(:use [jwt-examples.hello :only [make-servlet]]))
(defn -main []
(run-server {:port 4000} "/*" (make-servlet)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment