Files
lislgosms/api/src/report-materials/report-materials.module.ts
T

15 lines
619 B
TypeScript

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