mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Simplified DI resolution
This commit is contained in:
parent
e9861e1b26
commit
f4c1dbdd3c
8 changed files with 12 additions and 22 deletions
|
@ -25,8 +25,10 @@ func DefineSingleton(ptr interface{}, constructor interface{}) interface{} {
|
|||
return ptr
|
||||
}
|
||||
|
||||
func ResolveDependency(ptr interface{}) {
|
||||
inject.ExtractAssignable(Graph, ptr)
|
||||
func ResolveDependencies(ptrs ...interface{}) {
|
||||
for _, p := range ptrs {
|
||||
inject.ExtractAssignable(Graph, p)
|
||||
}
|
||||
}
|
||||
|
||||
func init() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue