(labelKey string, labelValue string)
| 177 | } |
| 178 | |
| 179 | func (labels *LabelsToModify) Add(labelKey string, labelValue string) { |
| 180 | labels.operator(labelKey, labelValue, AddLabel) |
| 181 | } |
| 182 | |
| 183 | func (labels *LabelsToModify) Update(labelKey string, labelValue string) { |
| 184 | labels.operator(labelKey, labelValue, UpdateLabel) |