16 lines
281 B
Go
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
|
|
}
|