import { Module } from '@nestjs/common'; import { ExchangeRateService } from './services/ExchangeRateService'; @Module({ providers: [ExchangeRateService], exports: [ExchangeRateService] }) export class ExchangeRateModule {}