import { Module } from '@nestjs/common'; import { GrowthController, TeacherGrowthController } from './growth.controller'; import { GrowthService } from './growth.service'; @Module({ controllers: [GrowthController, TeacherGrowthController], providers: [GrowthService], exports: [GrowthService], }) export class GrowthModule {}