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