Spaces:
Running
Running
File size: 904 Bytes
f78b36a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | import { Module, forwardRef } from "@nestjs/common";
import { CarePriorityService } from "./care-priority.service";
import { CarePriorityController } from "./care-priority.controller";
import { BloodPressureModule } from "../blood-pressure/blood-pressure.module";
import { SymptomsModule } from "../symptoms/symptoms.module";
import { UserProfileModule } from "../user-profile/user-profile.module";
import { NotificationsModule } from "../notifications/notifications.module";
import { HealthAssessmentService } from "./health-assessment.service";
@Module({
imports: [
forwardRef(() => BloodPressureModule),
forwardRef(() => SymptomsModule),
UserProfileModule,
NotificationsModule,
],
controllers: [CarePriorityController],
providers: [CarePriorityService, HealthAssessmentService],
exports: [CarePriorityService, HealthAssessmentService],
})
export class CarePriorityModule {}
|