rwadurian/backend/services/referral-service/src/pre-planting/pre-planting-stats.module.ts

19 lines
623 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Module } from '@nestjs/common';
import { ApplicationModule } from '../modules/application.module';
import { PrePlantingPurchasedHandler } from './pre-planting-purchased.handler';
/**
* 预种团队统计模块
*
* 消费 planting-service 发出的预种事件,更新团队统计
*
* 依赖:
* - InfrastructureModule (@Global)KafkaService, PrismaService, EventAckPublisher, Repos
* - ApplicationModuleTeamStatisticsService合并事件复用树级统计更新
*/
@Module({
imports: [ApplicationModule],
providers: [PrePlantingPurchasedHandler],
})
export class PrePlantingStatsModule {}