mirror of
https://dev.azure.com/globalhealthx/EMR/_git/helix-engage-server
synced 2026-04-11 18:08:16 +00:00
feat: add worklist engine with prioritized missed calls, follow-ups, and leads
This commit is contained in:
12
src/worklist/worklist.module.ts
Normal file
12
src/worklist/worklist.module.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
import { Module } from '@nestjs/common';
|
||||
import { PlatformModule } from '../platform/platform.module';
|
||||
import { WorklistController } from './worklist.controller';
|
||||
import { WorklistService } from './worklist.service';
|
||||
import { MissedCallWebhookController } from './missed-call-webhook.controller';
|
||||
|
||||
@Module({
|
||||
imports: [PlatformModule],
|
||||
controllers: [WorklistController, MissedCallWebhookController],
|
||||
providers: [WorklistService],
|
||||
})
|
||||
export class WorklistModule {}
|
||||
Reference in New Issue
Block a user