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,