mirror of https://github.com/ghostfolio/ghostfolio
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.
63 lines
3.1 KiB
63 lines
3.1 KiB
import { AccountBalanceService } from '@ghostfolio/api/app/account-balance/account-balance.service';
|
|
import { AccountService } from '@ghostfolio/api/app/account/account.service';
|
|
import { OrderModule } from '@ghostfolio/api/app/order/order.module';
|
|
import { PortfolioCalculatorFactory } from '@ghostfolio/api/app/portfolio/calculator/portfolio-calculator.factory';
|
|
import { CurrentRateService } from '@ghostfolio/api/app/portfolio/current-rate.service';
|
|
import { PortfolioService } from '@ghostfolio/api/app/portfolio/portfolio.service';
|
|
import { RulesService } from '@ghostfolio/api/app/portfolio/rules.service';
|
|
import { RedisCacheModule } from '@ghostfolio/api/app/redis-cache/redis-cache.module';
|
|
import { SymbolModule } from '@ghostfolio/api/app/symbol/symbol.module';
|
|
import { UserModule } from '@ghostfolio/api/app/user/user.module';
|
|
import { TransformDataSourceInRequestModule } from '@ghostfolio/api/interceptors/transform-data-source-in-request/transform-data-source-in-request.module';
|
|
import { TransformDataSourceInResponseModule } from '@ghostfolio/api/interceptors/transform-data-source-in-response/transform-data-source-in-response.module';
|
|
import { ApiModule } from '@ghostfolio/api/services/api/api.module';
|
|
import { BenchmarkService } from '@ghostfolio/api/services/benchmark/benchmark.service';
|
|
import { ConfigurationModule } from '@ghostfolio/api/services/configuration/configuration.module';
|
|
import { DataProviderModule } from '@ghostfolio/api/services/data-provider/data-provider.module';
|
|
import { ExchangeRateDataModule } from '@ghostfolio/api/services/exchange-rate-data/exchange-rate-data.module';
|
|
import { ImpersonationModule } from '@ghostfolio/api/services/impersonation/impersonation.module';
|
|
import { MarketDataModule } from '@ghostfolio/api/services/market-data/market-data.module';
|
|
import { MarketDataService } from '@ghostfolio/api/services/market-data/market-data.service';
|
|
import { PrismaModule } from '@ghostfolio/api/services/prisma/prisma.module';
|
|
import { PropertyModule } from '@ghostfolio/api/services/property/property.module';
|
|
import { PortfolioSnapshotQueueModule } from '@ghostfolio/api/services/queues/portfolio-snapshot/portfolio-snapshot.module';
|
|
import { SymbolProfileModule } from '@ghostfolio/api/services/symbol-profile/symbol-profile.module';
|
|
|
|
import { Module } from '@nestjs/common';
|
|
|
|
import { BenchmarksController } from './benchmarks.controller';
|
|
import { BenchmarksService } from './benchmarks.service';
|
|
|
|
@Module({
|
|
controllers: [BenchmarksController],
|
|
imports: [
|
|
ApiModule,
|
|
ConfigurationModule,
|
|
DataProviderModule,
|
|
ExchangeRateDataModule,
|
|
ImpersonationModule,
|
|
MarketDataModule,
|
|
OrderModule,
|
|
PortfolioSnapshotQueueModule,
|
|
PrismaModule,
|
|
PropertyModule,
|
|
RedisCacheModule,
|
|
SymbolModule,
|
|
SymbolProfileModule,
|
|
TransformDataSourceInRequestModule,
|
|
TransformDataSourceInResponseModule,
|
|
UserModule
|
|
],
|
|
providers: [
|
|
AccountBalanceService,
|
|
AccountService,
|
|
BenchmarkService,
|
|
BenchmarksService,
|
|
CurrentRateService,
|
|
MarketDataService,
|
|
PortfolioCalculatorFactory,
|
|
PortfolioService,
|
|
RulesService
|
|
]
|
|
})
|
|
export class BenchmarksModule {}
|
|
|