(ctx context.Context, keyword string, conditions map[string]interface{})
| 45 | } |
| 46 | |
| 47 | func (i *imlAPIService) CountMapByModel(ctx context.Context, keyword string, conditions map[string]interface{}) (map[string]int64, error) { |
| 48 | return i.store.CountByGroup(ctx, keyword, conditions, "model") |
| 49 | } |
| 50 | |
| 51 | func (i *imlAPIService) CountMapByProvider(ctx context.Context, keyword string, conditions map[string]interface{}) (map[string]int64, error) { |
| 52 | return i.store.CountByGroup(ctx, keyword, conditions, "provider") |
nothing calls this directly
no test coverage detected