> in db.clj
> I have
>  (:require [some-library :as mylib])
> in api.clj:
> I have (:require [myapp.db :as db])
> I then want to call mylib/somefunction -

You can use "some-library/..." directly after requiring db, e.g;

xxlib.clj...
(ns xxlib)
(defn xxfoo [] :xxfoo)

db.clj...
(ns db
  (:require [xxlib :as mylib]))
(defn dbfoo[] :dbfoo)

repl...
Clojure 1.2.0
(require ['db :as 'db])
(xxlib/xxfoo)
:xxfoo

Does that help?
- Rgds, Adrian.

-- 
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

Reply via email to