(ctx context.Context, keyword string, conditions map[string]interface{})
| 32 | } |
| 33 | |
| 34 | func (i *imlAIKeyService) CountMapByProvider(ctx context.Context, keyword string, conditions map[string]interface{}) (map[string]int64, error) { |
| 35 | return i.store.CountByGroup(ctx, keyword, conditions, "provider") |
| 36 | } |
| 37 | |
| 38 | func (i *imlAIKeyService) IncrUseToken(ctx context.Context, id string, useToken int) error { |
| 39 | info, err := i.store.GetByUUID(ctx, id) |
nothing calls this directly
no test coverage detected