Is there any way to rename clojure libraries when you load them with require or use?
For example, is there any way to do something like
(require 'some.include.path.some-library :as something-else)
and then reference elements of some-library through something-else/element-name?
Thanks.