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:
parent
0989d914de
commit
81cd90eae0
|
|
@ -36,6 +36,7 @@ import { BlockchainEventConsumerService } from '@/infrastructure/kafka/blockchai
|
||||||
import { SmsService } from '@/infrastructure/external/sms/sms.service';
|
import { SmsService } from '@/infrastructure/external/sms/sms.service';
|
||||||
import { BlockchainClientService } from '@/infrastructure/external/blockchain/blockchain-client.service';
|
import { BlockchainClientService } from '@/infrastructure/external/blockchain/blockchain-client.service';
|
||||||
import { MpcClientService, MpcWalletService } from '@/infrastructure/external/mpc';
|
import { MpcClientService, MpcWalletService } from '@/infrastructure/external/mpc';
|
||||||
|
import { StorageService } from '@/infrastructure/external/storage/storage.service';
|
||||||
|
|
||||||
// Shared
|
// Shared
|
||||||
import { GlobalExceptionFilter, TransformInterceptor } from '@/shared/filters/global-exception.filter';
|
import { GlobalExceptionFilter, TransformInterceptor } from '@/shared/filters/global-exception.filter';
|
||||||
|
|
@ -61,6 +62,7 @@ import { JwtAuthGuard } from '@/shared/guards/jwt-auth.guard';
|
||||||
MpcClientService,
|
MpcClientService,
|
||||||
MpcWalletService,
|
MpcWalletService,
|
||||||
BlockchainClientService,
|
BlockchainClientService,
|
||||||
|
StorageService,
|
||||||
{ provide: MPC_KEY_SHARE_REPOSITORY, useClass: MpcKeyShareRepositoryImpl },
|
{ provide: MPC_KEY_SHARE_REPOSITORY, useClass: MpcKeyShareRepositoryImpl },
|
||||||
],
|
],
|
||||||
exports: [
|
exports: [
|
||||||
|
|
@ -73,6 +75,7 @@ import { JwtAuthGuard } from '@/shared/guards/jwt-auth.guard';
|
||||||
MpcClientService,
|
MpcClientService,
|
||||||
MpcWalletService,
|
MpcWalletService,
|
||||||
BlockchainClientService,
|
BlockchainClientService,
|
||||||
|
StorageService,
|
||||||
MPC_KEY_SHARE_REPOSITORY,
|
MPC_KEY_SHARE_REPOSITORY,
|
||||||
],
|
],
|
||||||
})
|
})
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue