/opt/mawid/apps/api/src/whatsapp
NameSizeModeActions
owner-notifier.service.ts17450644editdlrm
wa-core.module.ts13520644editdlrm
wa-http.client.ts17360644editdlrm
wa-inbound.service.spec.ts50660644editdlrm
wa-inbound.service.ts54310644editdlrm
wa-outbound.worker.ts27230644editdlrm
wa-queue.ts4470644editdlrm
wa-sender.service.ts49590644editdlrm
wa-signature.spec.ts12640644editdlrm
wa-signature.ts6620644editdlrm
wa-types.ts16830644editdlrm
wa-webhook.controller.spec.ts26840644editdlrm
wa-webhook.controller.ts23080644editdlrm
wa-window.spec.ts8600644editdlrm
wa-window.ts5090644editdlrm
whatsapp.module.ts5790644editdlrm
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 {}