fix(identity-service): add MpcEventConsumerService to app.module.ts

The InfrastructureModule was defined inline in app.module.ts, not using
the separate infrastructure.module.ts file. Added MpcEventConsumerService
to the inline module definition.

🤖 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-06 22:36:01 -08:00
parent 417f580df8
commit 32c806b90c
1 changed files with 3 additions and 0 deletions

View File

@ -29,6 +29,7 @@ import { UserAccountRepositoryImpl } from '@/infrastructure/persistence/reposito
import { MpcKeyShareRepositoryImpl } from '@/infrastructure/persistence/repositories/mpc-key-share.repository.impl';
import { RedisService } from '@/infrastructure/redis/redis.service';
import { EventPublisherService } from '@/infrastructure/kafka/event-publisher.service';
import { MpcEventConsumerService } from '@/infrastructure/kafka/mpc-event-consumer.service';
import { SmsService } from '@/infrastructure/external/sms/sms.service';
import { MpcClientService, MpcWalletService } from '@/infrastructure/external/mpc';
import { BackupClientService, MpcShareStorageService } from '@/infrastructure/external/backup';
@ -51,6 +52,7 @@ import { JwtAuthGuard } from '@/shared/guards/jwt-auth.guard';
PrismaService,
RedisService,
EventPublisherService,
MpcEventConsumerService,
SmsService,
MpcClientService,
MpcWalletService,
@ -65,6 +67,7 @@ import { JwtAuthGuard } from '@/shared/guards/jwt-auth.guard';
PrismaService,
RedisService,
EventPublisherService,
MpcEventConsumerService,
SmsService,
MpcClientService,
MpcWalletService,