Basic DI (dependency injection) working! Yay!!

This commit is contained in:
Deluan 2016-03-01 09:38:43 -05:00
parent 4efb8ab031
commit 4df6c43be8
5 changed files with 68 additions and 0 deletions

9
utils/graph.go Normal file
View file

@ -0,0 +1,9 @@
package utils
import "github.com/karlkfi/inject"
var Graph inject.Graph
func init() {
Graph = inject.NewGraph()
}