GetPatchMergeKey reads the field tags to retrieve the patch merge key. It returns nil if no such key is defined
(field *markers.FieldInfo)
| 48 | |
| 49 | // GetPatchMergeKey reads the field tags to retrieve the patch merge key. It returns nil if no such key is defined |
| 50 | func GetPatchMergeKey(field *markers.FieldInfo) string { |
| 51 | return field.Tag.Get(patchMergeKeyTagKey) |
| 52 | } |