import { Module } from '@nestjs/common'; import { HttpModule } from '@nestjs/axios'; import { ReportsController } from './reports.controller'; import { ReportsService } from './reports.service'; import { FareEngineModule } from '../fare-engine/fare-engine.module'; @Module({ // FareEngineModule supplies the counterfactual fares the blocked-seat revenue // loss report prices blocked seats against — never re-implemented here. imports: [HttpModule, FareEngineModule], controllers: [ReportsController], providers: [ReportsService], exports: [ReportsService] }) export class ReportsModule {}