From 32c806b90c7968db36c7102d7c084d96679631b0 Mon Sep 17 00:00:00 2001 From: hailin Date: Sat, 6 Dec 2025 22:36:01 -0800 Subject: [PATCH] fix(identity-service): add MpcEventConsumerService to app.module.ts MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- 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 fcbcedab..bc475a0f 100644 --- a/backend/services/identity-service/src/app.module.ts +++ b/backend/services/identity-service/src/app.module.ts @@ -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,