15 lines
319 B
Go
15 lines
319 B
Go
|
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 = ")"
|
||
|
)
|