kindergarten_java/reading-platform-backend/src/modules/growth/growth.module.ts

11 lines
333 B
TypeScript
Raw Normal View History

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 {}