2021-04-13 21:53:58 +02:00
|
|
|
import { Module } from '@nestjs/common';
|
|
|
|
|
2021-04-18 19:06:54 +02:00
|
|
|
import { ConfigurationService } from '../../services/configuration.service';
|
2021-04-13 21:53:58 +02:00
|
|
|
import { DataProviderService } from '../../services/data-provider.service';
|
|
|
|
import { AlphaVantageService } from '../../services/data-provider/alpha-vantage/alpha-vantage.service';
|
|
|
|
import { RakutenRapidApiService } from '../../services/data-provider/rakuten-rapid-api/rakuten-rapid-api.service';
|
|
|
|
import { YahooFinanceService } from '../../services/data-provider/yahoo-finance/yahoo-finance.service';
|
|
|
|
import { ExchangeRateDataService } from '../../services/exchange-rate-data.service';
|
|
|
|
import { PrismaService } from '../../services/prisma.service';
|
|
|
|
import { RulesService } from '../../services/rules.service';
|
|
|
|
import { ExperimentalController } from './experimental.controller';
|
|
|
|
import { ExperimentalService } from './experimental.service';
|
|
|
|
|
|
|
|
@Module({
|
|
|
|
imports: [],
|
|
|
|
controllers: [ExperimentalController],
|
|
|
|
providers: [
|
|
|
|
AlphaVantageService,
|
2021-04-18 19:06:54 +02:00
|
|
|
ConfigurationService,
|
2021-04-13 21:53:58 +02:00
|
|
|
DataProviderService,
|
|
|
|
ExchangeRateDataService,
|
|
|
|
ExperimentalService,
|
|
|
|
PrismaService,
|
|
|
|
RakutenRapidApiService,
|
|
|
|
RulesService,
|
|
|
|
YahooFinanceService
|
|
|
|
]
|
|
|
|
})
|
|
|
|
export class ExperimentalModule {}
|