mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Fixed problem with DI
This commit is contained in:
parent
e10e730af1
commit
067517a916
3 changed files with 15 additions and 11 deletions
|
@ -1,8 +1,9 @@
|
|||
package utils
|
||||
|
||||
import (
|
||||
"github.com/karlkfi/inject"
|
||||
"reflect"
|
||||
|
||||
"github.com/karlkfi/inject"
|
||||
)
|
||||
|
||||
var Graph inject.Graph
|
||||
|
@ -11,9 +12,9 @@ var (
|
|||
definitions map[reflect.Type]interface{}
|
||||
)
|
||||
|
||||
func DefineSingleton(ptr interface{}, constructor interface{}, args ...interface{}) interface{} {
|
||||
func DefineSingleton(ptr interface{}, constructor interface{}) interface{} {
|
||||
typ := reflect.TypeOf(ptr)
|
||||
provider := inject.NewProvider(constructor, args...)
|
||||
provider := inject.NewAutoProvider(constructor)
|
||||
|
||||
if _, found := definitions[typ]; found {
|
||||
ptr = definitions[typ]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue