di/registry/definition.go

11 lines
152 B
Go
Raw Normal View History

2017-12-03 13:54:09 +00:00
package registry
import "reflect"
2017-12-05 10:02:41 +00:00
type ComponentDefinition struct {
PkgName string
TypeName string
Type reflect.Type
RealType reflect.Type
2017-12-03 13:54:09 +00:00
}