annotation-go/const.go

15 lines
319 B
Go
Raw Normal View History

2019-11-12 14:58:17 +00:00
package annotation
const (
// AnnotationTag is value
AnnotationTag = "annotation"
// AnnotationMetaTag is value
AnnotationMetaTag = "@annotation"
// AnnotationChar is value
AnnotationChar = "@"
// AnnotationStartChar is value
AnnotationStartChar = "("
// AnnotationEndChar is value
AnnotationEndChar = ")"
)