import { Module } from '@nestjs/common'; import { HttpModule } from '@nestjs/axios'; import { FareEngineController, ConfigController } from './fare-engine.controller'; import { FareEngineService } from './fare-engine.service'; import { CurrencyController } from './currency.controller'; import { CurrencyModule } from '../currency/currency.module'; @Module({ imports: [HttpModule, CurrencyModule], controllers: [FareEngineController, CurrencyController, ConfigController], providers: [FareEngineService], exports: [FareEngineService], }) export class FareEngineModule {}