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

14 lines
298 B
Go

4 years ago
package util
import "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 value, ok
}
}
return "", false
}