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.
27 lines
1.1 KiB
27 lines
1.1 KiB
import { CacheService } from '@ghostfolio/api/app/cache/cache.service';
|
|
import { RedisCacheModule } from '@ghostfolio/api/app/redis-cache/redis-cache.module';
|
|
import { ConfigurationModule } from '@ghostfolio/api/services/configuration.module';
|
|
import { DataGatheringModule } from '@ghostfolio/api/services/data-gathering.module';
|
|
import { DataProviderModule } from '@ghostfolio/api/services/data-provider/data-provider.module';
|
|
import { ExchangeRateDataModule } from '@ghostfolio/api/services/exchange-rate-data.module';
|
|
import { PrismaModule } from '@ghostfolio/api/services/prisma.module';
|
|
import { SymbolProfileModule } from '@ghostfolio/api/services/symbol-profile.module';
|
|
import { Module } from '@nestjs/common';
|
|
|
|
import { CacheController } from './cache.controller';
|
|
|
|
@Module({
|
|
exports: [CacheService],
|
|
controllers: [CacheController],
|
|
imports: [
|
|
ConfigurationModule,
|
|
DataGatheringModule,
|
|
DataProviderModule,
|
|
ExchangeRateDataModule,
|
|
PrismaModule,
|
|
RedisCacheModule,
|
|
SymbolProfileModule
|
|
],
|
|
providers: [CacheService]
|
|
})
|
|
export class CacheModule {}
|
|
|