You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-zero/tools/goctl/api/util/annotation.go

18 lines
334 B
Go

4 years ago
package util
import (
"strings"
"github.com/tal-tech/go-zero/tools/goctl/api/spec"
)
4 years ago
func GetAnnotationValue(annos []spec.Annotation, key, field string) (string, bool) {
for _, anno := range annos {
if anno.Name == key {
value, ok := anno.Properties[field]
return strings.TrimSpace(value), ok
4 years ago
}
}
return "", false
}