mirror of https://github.com/ghostfolio/ghostfolio
committed by
Thomas
7 changed files with 35 additions and 20 deletions
@ -0,0 +1,10 @@ |
|||
import { Module } from '@nestjs/common'; |
|||
import { ExchangeRateDataService } from '@ghostfolio/api/services/exchange-rate-data.service'; |
|||
import { DataProviderModule } from '@ghostfolio/api/services/data-provider/data-provider.module'; |
|||
|
|||
@Module({ |
|||
imports: [DataProviderModule], |
|||
providers: [ExchangeRateDataService], |
|||
exports: [ExchangeRateDataService] |
|||
}) |
|||
export class ExchangeRateDataModule {} |
Loading…
Reference in new issue