feat: add Exotel webhook controller and service for call event parsing

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-17 09:04:15 +05:30
parent 5b35c65e6e
commit 30df1d0158
7 changed files with 215 additions and 0 deletions

View File

@@ -2,6 +2,7 @@ import { Module } from '@nestjs/common';
import { ConfigModule } from '@nestjs/config';
import configuration from './config/configuration';
import { PlatformModule } from './platform/platform.module';
import { ExotelModule } from './exotel/exotel.module';
@Module({
imports: [
@@ -10,6 +11,7 @@ import { PlatformModule } from './platform/platform.module';
isGlobal: true,
}),
PlatformModule,
ExotelModule,
],
})
export class AppModule {}