Skip to content

Instantly share code, notes, and snippets.

@amalloy
Created May 2, 2011 06:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amalloy/951227 to your computer and use it in GitHub Desktop.
Save amalloy/951227 to your computer and use it in GitHub Desktop.
user> (pprint (read-string (reconstruct "/home/akm/src/clojure/4clojure/src/foreclojure/core.clj")))
(ns
foreclojure.core
(:use
(foreclojure
[login :only [login-routes]]
[static :only [static-routes welcome-page]]
[config :only [config]]
[social :only [social-routes]]
[register :only [register-routes]]
[db-utils :only [reconcile-solved-count]]
[users :only [users-routes]]
[version :only [version-routes]]
[utils :only [wrap-uri-binding]]
[problems :only [problems-routes]])
[compojure.core :only [GET defroutes]]
[ring.adapter.jetty :only [run-jetty]]
[ring.middleware.reload :only [wrap-reload]]
[sandbar.stateful-session :only [wrap-stateful-session]]
[somnium.congomongo :only [add-index! authenticate mongo!]])
(:require
[compojure.handler :as handler]
[compojure.route :as route]))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment