di-go/annotation/type.go
crusader ce496549b2 ing
2018-04-07 02:22:32 +09:00

16 lines
281 B
Go

package annotation
import "reflect"
var TypeAnnotationType = reflect.TypeOf((*TypeAnnotation)(nil)).Elem()
type TypeAnnotation interface {
Annotation
}
var MethodAnnotationType = reflect.TypeOf((*MethodAnnotation)(nil)).Elem()
type MethodAnnotation interface {
Annotation
}