import { Module } from '@nestjs/common'; import { WebhookController } from './webhook.controller'; import { WebhookService } from './webhook.service'; import { WhatsAppModule } from '../whatsapp/whatsapp.module'; import { LlmModule } from '../llm/llm.module'; @Module({ imports: [WhatsAppModule, LlmModule], controllers: [WebhookController], providers: [WebhookService], }) export class WebhookModule {}