(key string)
| 44 | const capCount = 2 |
| 45 | |
| 46 | func (c Client) listCountKey(key string) keyDef { |
| 47 | return keyDef{ |
| 48 | pk: strings.Join([]string{"_redimo", key}, "/"), |
| 49 | sk: "count", |
| 50 | } |
| 51 | } |
| 52 | |
| 53 | func (ln listNode) toAV(c Client) map[string]dynamodb.AttributeValue { |
| 54 | avm := map[string]dynamodb.AttributeValue{} |
no outgoing calls
no test coverage detected