mirror of
https://dev.azure.com/globalhealthx/EMR/_git/helix-engage-server
synced 2026-04-11 18:08:16 +00:00
13 lines
468 B
TypeScript
13 lines
468 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { PlatformModule } from '../platform/platform.module';
|
|
import { OzonetelAgentModule } from '../ozonetel/ozonetel-agent.module';
|
|
import { SupervisorController } from './supervisor.controller';
|
|
import { SupervisorService } from './supervisor.service';
|
|
|
|
@Module({
|
|
imports: [PlatformModule, OzonetelAgentModule],
|
|
controllers: [SupervisorController],
|
|
providers: [SupervisorService],
|
|
})
|
|
export class SupervisorModule {}
|