(service *dynamodb.Client)
| 46 | } |
| 47 | |
| 48 | func NewClient(service *dynamodb.Client) Client { |
| 49 | return Client{ |
| 50 | ddbClient: service, |
| 51 | consistentReads: true, |
| 52 | table: "redimo", |
| 53 | index: "redimo_index", |
| 54 | pk: "pk", |
| 55 | sk: "sk", |
| 56 | skN: "skN", |
| 57 | } |
| 58 | } |
| 59 | |
| 60 | const ( |
| 61 | vk = "val" |
no outgoing calls