di-go/annotation/type.go

10 lines
156 B
Go
Raw Normal View History

2018-04-03 09:02:31 +00:00
package annotation
2018-04-05 08:49:15 +00:00
import "reflect"
var TypeAnnotationType = reflect.TypeOf((*TypeAnnotation)(nil)).Elem()
2018-04-03 09:02:31 +00:00
type TypeAnnotation interface {
Annotation
}