Hi, luckily use is not transitive. If you want to use congomongo from analysis-2 you have to do:
(ns my-important-project.analysis-2 (:use somnium.congomongo)) (println (fetch-one :data)) or (nameing what you need explicitly; prefered) (ns my-important-project.analysis-2 (:use [somnium.congomongo :only (fetch-one)])) (println (fetch-one :data)) or (using an alias; also prefered over plain :use) (ns my-important-project.analysis-2 (:require [somnium.congomongo :as congo])) (println (congo/fetch-one :data)) Hope this helps. Sincerely Meikel -- 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