import { Module } from "@nestjs/common"; import { EducationController } from "./education.controller"; import { EducationService } from "./education.service"; import { UserProfileModule } from "../user-profile/user-profile.module"; /** * Education Module * * RESPONSIBILITIES: * - Content delivery * - Personalization based on user profile * * CLINICAL SAFETY: * - No interpretation * - Curated content only */ @Module({ imports: [UserProfileModule], controllers: [EducationController], providers: [EducationService], exports: [EducationService], }) export class EducationModule {}