/opt/mawid/apps/api/src/whatsapp
Edit: /opt/mawid/apps/api/src/whatsapp/whatsapp.module.ts (579B)
import { Module } from '@nestjs/common';
import { AgentModule } from '../agent/agent.module';
import { RemindersModule } from '../reminders/reminders.module';
import { WaitlistModule } from '../waitlist/waitlist.module';
import { WaCoreModule } from './wa-core.module';
import { WaInboundService } from './wa-inbound.service';
import { WaWebhookController } from './wa-webhook.controller';
@Module({
imports: [WaCoreModule, AgentModule, RemindersModule, WaitlistModule],
controllers: [WaWebhookController],
providers: [WaInboundService],
})
export class WhatsappModule {}