You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
test-assignment-payments/src/exchange-rate/exchange-rate.module.ts

10 lines
292 B

import { Module } from '@nestjs/common';
import { ExchangeRateService } from './exchange-rate.service';
import { HttpModule } from '@nestjs/axios';
@Module({
imports: [HttpModule],
providers: [ExchangeRateService],
exports: [ExchangeRateService],
})
export class ExchangeRateModule {}