Removed inject lib, only use wire for DI

This commit is contained in:
Deluan 2020-01-08 09:54:25 -05:00 committed by Deluan Quintão
parent 3af9972b41
commit e8a8313b43
10 changed files with 1 additions and 104 deletions

View file

@ -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()
}