| 295 | } |
| 296 | |
| 297 | type dynamodbKVWithTimeout struct { |
| 298 | ddbClient dynamoDbClient |
| 299 | timeout time.Duration |
| 300 | } |
| 301 | |
| 302 | func newDynamodbKVWithTimeout(client dynamoDbClient, timeout time.Duration) *dynamodbKVWithTimeout { |
| 303 | return &dynamodbKVWithTimeout{ddbClient: client, timeout: timeout} |
nothing calls this directly
no outgoing calls
no test coverage detected