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, ], })