feat: add call lookup endpoint with lead matching + AI enrichment, token passthrough on platform service

This commit is contained in:
2026-03-18 09:11:15 +05:30
parent ccb4bc4ea6
commit 22ac383107
5 changed files with 192 additions and 2 deletions

View File

@@ -1,7 +1,9 @@
import { Module } from '@nestjs/common';
import { AuthController } from './auth.controller';
import { OzonetelAgentModule } from '../ozonetel/ozonetel-agent.module';
@Module({
imports: [OzonetelAgentModule],
controllers: [AuthController],
})
export class AuthModule {}