(ctx context.Context, profession string, labels map[string]string)
| 157 | return items, nil |
| 158 | } |
| 159 | func (p *ProjectClient) matchLabels(ctx context.Context, profession string, labels map[string]string) ([]*entity.BasicInfo, error) { |
| 160 | return matchLabels[entity.BasicInfo](ctx, p.client, profession, labels) |
| 161 | } |
| 162 | |
| 163 | func (p *ProjectClient) deleteByLabels(ctx context.Context, profession string, labels map[string]string) error { |
| 164 | list, err := p.client.MatchLabels(ctx, profession, labels) |
nothing calls this directly
no test coverage detected