mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Removed inject
lib, only use wire
for DI
This commit is contained in:
parent
3af9972b41
commit
e8a8313b43
10 changed files with 1 additions and 104 deletions
|
@ -1,37 +0,0 @@
|
|||
package utils
|
||||
|
||||
import (
|
||||
"reflect"
|
||||
|
||||
"github.com/karlkfi/inject"
|
||||
)
|
||||
|
||||
var Graph inject.Graph
|
||||
|
||||
var (
|
||||
definitions map[reflect.Type]interface{}
|
||||
)
|
||||
|
||||
func DefineSingleton(ptr interface{}, constructor interface{}) interface{} {
|
||||
typ := reflect.TypeOf(ptr)
|
||||
provider := inject.NewAutoProvider(constructor)
|
||||
|
||||
if _, found := definitions[typ]; found {
|
||||
ptr = definitions[typ]
|
||||
} else {
|
||||
definitions[typ] = ptr
|
||||
}
|
||||
Graph.Define(ptr, provider)
|
||||
return ptr
|
||||
}
|
||||
|
||||
func ResolveDependencies(ptrs ...interface{}) {
|
||||
for _, p := range ptrs {
|
||||
inject.ExtractAssignable(Graph, p)
|
||||
}
|
||||
}
|
||||
|
||||
func init() {
|
||||
definitions = make(map[reflect.Type]interface{})
|
||||
Graph = inject.NewGraph()
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue