/** * Injection identifiers */ export type containerSymbol = { PseGateway: symbol; TransferService: symbol; KushkiService: symbol; DynamoGateway: symbol; SNSGateway: symbol; FirehoseGateway: symbol; AwsDocumentClient: symbol; AwsFirehose: symbol; AwsSns: symbol; AwsLambda: symbol; LambdaGateway: symbol; SyncService: symbol; }; const IDENTIFIERS: containerSymbol = { PseGateway: Symbol.for("PseGateway"), TransferService: Symbol.for("TransferService"), KushkiService: Symbol.for("KushkiService"), DynamoGateway: Symbol.for("DynamoGateway"), SNSGateway: Symbol.for("SNSGateway"), FirehoseGateway: Symbol.for("FirehoseGateway"), AwsDocumentClient: Symbol.for("AwsDocumentClient"), AwsFirehose: Symbol.for("AwsFirehose"), AwsSns: Symbol.for("AwsSns"), AwsLambda: Symbol.for("AwsLambda"), LambdaGateway: Symbol.for("LambdaGateway"), SyncService: Symbol.for("SyncService"), }; export { IDENTIFIERS };