From ce496549b2657de6632dac83559f8c866da36a12 Mon Sep 17 00:00:00 2001 From: crusader Date: Sat, 7 Apr 2018 02:22:32 +0900 Subject: [PATCH] ing --- annotation/type.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/annotation/type.go b/annotation/type.go index 22ce1c4..46a212a 100644 --- a/annotation/type.go +++ b/annotation/type.go @@ -7,3 +7,9 @@ var TypeAnnotationType = reflect.TypeOf((*TypeAnnotation)(nil)).Elem() type TypeAnnotation interface { Annotation } + +var MethodAnnotationType = reflect.TypeOf((*MethodAnnotation)(nil)).Elem() + +type MethodAnnotation interface { + Annotation +}