(ctx context.Context, key dynamodbKey, isPrefix bool)
| 29 | type dynamoDbClient interface { |
| 30 | List(ctx context.Context, key dynamodbKey) ([]string, float64, error) |
| 31 | Query(ctx context.Context, key dynamodbKey, isPrefix bool) (map[string]dynamodbItem, float64, error) |
| 32 | Delete(ctx context.Context, key dynamodbKey) error |
| 33 | Put(ctx context.Context, key dynamodbKey, data []byte) error |
| 34 | Batch(ctx context.Context, put map[dynamodbKey]dynamodbItem, delete []dynamodbKey) (bool, error) |
no outgoing calls