1 2 3 4 5 6 7 8 9 10import { Module } from '@nestjs/common'; import { ReportService } from './report.service'; import { ReportController } from './report.controller'; @Module({ providers: [ReportService], controllers: [ReportController] }) export class ReportModule {}