- reading-platform-backend:NestJS 后端 - reading-platform-frontend:Vue3 前端 - reading-platform-java:Spring Boot 服务端
18 lines
829 B
TypeScript
18 lines
829 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { SchoolController } from './school.controller';
|
|
import { SchoolService } from './school.service';
|
|
import { StatsController } from './stats.controller';
|
|
import { StatsService } from './stats.service';
|
|
import { PackageController } from './package.controller';
|
|
import { SettingsController } from './settings.controller';
|
|
import { SettingsService } from './settings.service';
|
|
import { ExportController } from './export.controller';
|
|
import { ExportService } from './export.service';
|
|
|
|
@Module({
|
|
controllers: [SchoolController, StatsController, PackageController, SettingsController, ExportController],
|
|
providers: [SchoolService, StatsService, SettingsService, ExportService],
|
|
exports: [SchoolService, StatsService, SettingsService, ExportService],
|
|
})
|
|
export class SchoolModule {}
|