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.
14 lines
275 B
Go
14 lines
275 B
Go
4 years ago
|
package util
|
||
|
|
||
|
import "zero/tools/goctl/api/spec"
|
||
|
|
||
|
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
|
||
|
}
|