Files
nullcart/backend/src/modules/exchangeRate/ExchangeRateModule.ts
T

9 lines
233 B
TypeScript

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