import { Module } from '@nestjs/common'; import { FilesModule } from '../files/files.module'; import { SmsConfigModule } from '../sms-config/sms-config.module'; import { ReportMaterialsController } from './report-materials.controller'; import { ReportMaterialsService } from './report-materials.service'; import { ReportBatchDownloadService } from './batch-download.service'; @Module({ imports: [FilesModule, SmsConfigModule], controllers: [ReportMaterialsController], providers: [ReportMaterialsService, ReportBatchDownloadService], exports: [ReportMaterialsService], }) export class ReportMaterialsModule {}