We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
nil
(ns myns (:require [darkleaf.di.core :as di])) (defn ^{::di/kind :component} sys [{}] (println ">>> hello, world")) @(di/start :sys {:sys (di/ref `sys) `foo (di/ref `bar)}) ;; >>> hello, world ; => ExceptionInfo: Missing dependency myns/sys ; {:type :darkleaf.di.core/missing-dependency ; :stack (myns/sys :sys :darkleaf.di.core/implicit-root)}
"Missing dependency" ведет к дебагу в неправильном направлении, а именно поиску передачи зависимостей, хотя дело в том, что компонент ничего не вернул
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
"Missing dependency" ведет к дебагу в неправильном направлении, а именно поиску передачи зависимостей, хотя дело в том, что компонент ничего не вернул
The text was updated successfully, but these errors were encountered: