11 lines
333 B
TypeScript
11 lines
333 B
TypeScript
|
|
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 {}
|