fix(identity): add StorageService to InfrastructureModule in app.module.ts

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
hailin 2025-12-07 21:53:06 -08:00
parent 0989d914de
commit 81cd90eae0
1 changed files with 3 additions and 0 deletions

View File

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