()
| 30 | type MetadataNotFoundError string |
| 31 | |
| 32 | func (e MetadataNotFoundError) Error() string { |
| 33 | return fmt.Sprintf("metadata not found in %s", string(e)) |
| 34 | } |
| 35 | |
| 36 | // Labels is a set of key:value labels from an operator-registry object. |
| 37 | type LabelsMap map[string]string |
no outgoing calls
no test coverage detected