11 lines
152 B
Go
11 lines
152 B
Go
package registry
|
|
|
|
import "reflect"
|
|
|
|
type ComponentDefinition struct {
|
|
PkgName string
|
|
TypeName string
|
|
Type reflect.Type
|
|
RealType reflect.Type
|
|
}
|