refactor xmr rate module to exchange rate module for multi crypto support
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
import { Module } from '@nestjs/common';
|
||||
import { ExchangeRateService } from './services/ExchangeRateService';
|
||||
|
||||
@Module({
|
||||
providers: [ExchangeRateService],
|
||||
exports: [ExchangeRateService]
|
||||
})
|
||||
export class ExchangeRateModule {}
|
||||
Reference in New Issue
Block a user