()
| 20 | type labels map[string]string |
| 21 | |
| 22 | func (lbs *labels) init() { *lbs = labels(make(map[string]string)) } |
| 23 | func (lbs labels) get(key string) string { return lbs[key] } |
| 24 | func (lbs labels) set(key, val string) { lbs[key] = val } |
| 25 |
no test coverage detected