On Sat, Nov 10, 2012 at 8:49 PM, Denis Labaye <denis.lab...@gmail.com> wrote: > How do you avoid repeating this ? A clojure macro?, IDE support?, ... ?
http://code.google.com/p/clj-nstools/ The nstools library has a tool to help with this. (ns myproject.base (:require [clojure.set :as set] [clojure.java.io :as io] [...])) Then elsewhere: (ns+ myproject.database (:like myproject.base)) Will allow you to declare common :require clauses in one place. Seems like a pretty elegant design as long as there's no ambiguity as to what a given alias points to. -Phil -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to clojure+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/clojure?hl=en