From 81cd90eae041ac96c4d436c283e3304651af7568 Mon Sep 17 00:00:00 2001 From: hailin Date: Sun, 7 Dec 2025 21:53:06 -0800 Subject: [PATCH] fix(identity): add StorageService to InfrastructureModule in app.module.ts MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- backend/services/identity-service/src/app.module.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/backend/services/identity-service/src/app.module.ts b/backend/services/identity-service/src/app.module.ts index 4a2effe8..5be6cf25 100644 --- a/backend/services/identity-service/src/app.module.ts +++ b/backend/services/identity-service/src/app.module.ts @@ -36,6 +36,7 @@ import { BlockchainEventConsumerService } from '@/infrastructure/kafka/blockchai import { SmsService } from '@/infrastructure/external/sms/sms.service'; import { BlockchainClientService } from '@/infrastructure/external/blockchain/blockchain-client.service'; import { MpcClientService, MpcWalletService } from '@/infrastructure/external/mpc'; +import { StorageService } from '@/infrastructure/external/storage/storage.service'; // Shared import { GlobalExceptionFilter, TransformInterceptor } from '@/shared/filters/global-exception.filter'; @@ -61,6 +62,7 @@ import { JwtAuthGuard } from '@/shared/guards/jwt-auth.guard'; MpcClientService, MpcWalletService, BlockchainClientService, + StorageService, { provide: MPC_KEY_SHARE_REPOSITORY, useClass: MpcKeyShareRepositoryImpl }, ], exports: [ @@ -73,6 +75,7 @@ import { JwtAuthGuard } from '@/shared/guards/jwt-auth.guard'; MpcClientService, MpcWalletService, BlockchainClientService, + StorageService, MPC_KEY_SHARE_REPOSITORY, ], })