(readonly client: DynamoDBDocumentClient)
| 20 | |
| 21 | export class TinymoClient { |
| 22 | private constructor(readonly client: DynamoDBDocumentClient) { } |
| 23 | |
| 24 | static setDocumentClient(client?: DynamoDBDocumentClient) { |
| 25 | DOCUMENT_CLIENT = client ?? TinymoClient.createDefaultDocumentClient() |
nothing calls this directly
no outgoing calls
no test coverage detected