import { Module, Global } from '@nestjs/common'; import { PlatformModule } from '../platform/platform.module'; import { EventBusService } from './event-bus.service'; import { AiInsightConsumer } from './consumers/ai-insight.consumer'; @Global() @Module({ imports: [PlatformModule], providers: [EventBusService, AiInsightConsumer], exports: [EventBusService], }) export class EventsModule {}