Struct for caching the information
| 25 | |
| 26 | // Struct for caching the information |
| 27 | type Dynamodb struct { |
| 28 | CacheData CacheData |
| 29 | DynamodbConfiguration DynamodbConfiguration |
| 30 | } |
| 31 | |
| 32 | var dynamoDbCache = make(map[string]Dynamodb) |
| 33 | var dynamoDbClient = GetDynamoDbClient() |
nothing calls this directly
no outgoing calls
no test coverage detected