mirror of
https://dev.azure.com/globalhealthx/EMR/_git/helix-engage-server
synced 2026-04-11 10:07:22 +00:00
36 lines
1.2 KiB
TypeScript
36 lines
1.2 KiB
TypeScript
import { Module } from '@nestjs/common';
|
|
import { ConfigModule } from '@nestjs/config';
|
|
import configuration from './config/configuration';
|
|
import { AiModule } from './ai/ai.module';
|
|
import { AuthModule } from './auth/auth.module';
|
|
import { PlatformModule } from './platform/platform.module';
|
|
import { ExotelModule } from './exotel/exotel.module';
|
|
import { CallEventsModule } from './call-events/call-events.module';
|
|
import { OzonetelAgentModule } from './ozonetel/ozonetel-agent.module';
|
|
import { GraphqlProxyModule } from './graphql-proxy/graphql-proxy.module';
|
|
import { HealthModule } from './health/health.module';
|
|
import { WorklistModule } from './worklist/worklist.module';
|
|
import { CallAssistModule } from './call-assist/call-assist.module';
|
|
import { SearchModule } from './search/search.module';
|
|
|
|
@Module({
|
|
imports: [
|
|
ConfigModule.forRoot({
|
|
load: [configuration],
|
|
isGlobal: true,
|
|
}),
|
|
AiModule,
|
|
AuthModule,
|
|
PlatformModule,
|
|
ExotelModule,
|
|
CallEventsModule,
|
|
OzonetelAgentModule,
|
|
GraphqlProxyModule,
|
|
HealthModule,
|
|
WorklistModule,
|
|
CallAssistModule,
|
|
SearchModule,
|
|
],
|
|
})
|
|
export class AppModule {}
|