- reading-platform-backend:NestJS 后端 - reading-platform-frontend:Vue3 前端 - reading-platform-java:Spring Boot 服务端
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 {}
|