clojure - How do functions get into different namespaces in the Duct framework? -


when fire new clojure project based on duct web framework, main.clj file contains following require clause:

:require  ...      [duct.util.system :refer [load-system]] ... 

but when inspect duct source, src/duct/util/system.clj doesn't define load-system function. in fact, load-system appears defined in lein-template/resources/leiningen/new/duct/base/dev.clj, in dev namespace.

so: how function end in duct.util.system namespace?

i guess issue looked @ duct.util.system source on master branch has been changed since version using in project:


Comments

Popular posts from this blog

asp.net - How to correctly use QUERY_STRING in ISAPI rewrite? -

jsf - "PropertyNotWritableException: Illegal Syntax for Set Operation" error when setting value in bean -

laravel - Undefined property: Illuminate\Pagination\LengthAwarePaginator::$id (View: F:\project\resources\views\admin\carousels\index.blade.php) -