Skip to content

Instantly share code, notes, and snippets.

@bhenry
Created September 18, 2010 05:01
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 bhenry/585375 to your computer and use it in GitHub Desktop.
Save bhenry/585375 to your computer and use it in GitHub Desktop.
;before
(ns slideshow.core
(:use [slideshow.images]
[slideshow.utils]
[net.cgrand.moustache :only [app]]
[hiccup.core :only [html]]
[hiccup.page-helpers :only [include-js include-css]]
[ring.adapter.jetty :only [run-jetty]]
[ring.middleware
[params :only [wrap-params]]
[keyword-params :only [wrap-keyword-params]]
[static :only [wrap-static]]
[file :only [wrap-file]]
[file-info :only [wrap-file-info]]
[reload :only [wrap-reload]]
[stacktrace :only [wrap-stacktrace]]]))
;;after M-x durendal-sort-ns
(ns slideshow.core
(:use [file :only [wrap-file]]
[file-info :only [wrap-file-info]]
[keyword-params :only [wrap-keyword-params]]
[params :only [wrap-params]]
[reload :only [wrap-reload]]
[stacktrace :only [wrap-stacktrace]]]
[static :only [wrap-static]]
[hiccup.core :only [html]]
[hiccup.page-helpers :only [include-js include-css]]
[net.cgrand.moustache :only [app]]
[ring.adapter.jetty :only [run-jetty]]
[ring.middleware
[slideshow.images]
[slideshow.utils]))
;;after sort-ns before the latest push.
(ns slideshow.core
(:use [file :only [wrap-file]]
[file-info :only [wrap-file-info]]
[keyword-params :only [wrap-keyword-params]]
[params :only [wrap-params]]
[reload :only [wrap-reload]]
[stacktrace :only [wrap-stacktrace]]]
[static :only [wrap-static]]
[hiccup.core :only [html]]
[hiccup.page-helpers :only [include-js include-css]]
[net.cgrand.moustache :only [app]]
[ring.adapter.jetty :only [run-jetty]]
[ring.middleware
[slideshow.utils]
[slideshow.images]))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment