mirror of
https://dev.azure.com/globalhealthx/EMR/_git/helix-engage-server
synced 2026-04-11 18:08:16 +00:00
15 lines
567 B
TypeScript
15 lines
567 B
TypeScript
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 {}
|