di/registry/definition.go

28 lines
374 B
Go
Raw Normal View History

2017-12-03 13:54:09 +00:00
package registry
import "reflect"
type typeDefinition struct {
pkgName string
typeName string
targetType reflect.Type
realType reflect.Type
fields map[string]
}
type fieldDefinition struct {
pkgName string
typeName string
targetType reflect.Type
realType reflect.Type
}
type Service struct {
DAO *DAO `di-annotation:""`
}
type DAO struct {
}