import { Module } from '@nestjs/common'; import { PlatformModule } from '../platform/platform.module'; import { AiModule } from '../ai/ai.module'; import { CallEventsService } from './call-events.service'; import { CallEventsGateway } from './call-events.gateway'; import { CallLookupController } from './call-lookup.controller'; @Module({ imports: [PlatformModule, AiModule], controllers: [CallLookupController], providers: [CallEventsService, CallEventsGateway], exports: [CallEventsService, CallEventsGateway], }) export class CallEventsModule {}