mirror of
https://dev.azure.com/globalhealthx/EMR/_git/helix-engage-server
synced 2026-04-11 10:07:22 +00:00
14 lines
526 B
TypeScript
14 lines
526 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { PlatformModule } from '../platform/platform.module';
|
|
import { AuthModule } from '../auth/auth.module';
|
|
import { CallerResolutionController } from './caller-resolution.controller';
|
|
import { CallerResolutionService } from './caller-resolution.service';
|
|
|
|
@Module({
|
|
imports: [PlatformModule, AuthModule],
|
|
controllers: [CallerResolutionController],
|
|
providers: [CallerResolutionService],
|
|
exports: [CallerResolutionService],
|
|
})
|
|
export class CallerResolutionModule {}
|