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
985 B
24 lines
985 B
import { CacheService } from '@ghostfolio/api/app/cache/cache.service';
|
|
import { OrderService } from '@ghostfolio/api/app/order/order.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 { PrismaModule } from '@ghostfolio/api/services/prisma.module';
|
|
import { Module } from '@nestjs/common';
|
|
|
|
import { ImportController } from './import.controller';
|
|
import { ImportService } from './import.service';
|
|
|
|
@Module({
|
|
imports: [
|
|
ConfigurationModule,
|
|
DataGatheringModule,
|
|
DataProviderModule,
|
|
PrismaModule,
|
|
RedisCacheModule
|
|
],
|
|
controllers: [ImportController],
|
|
providers: [CacheService, ImportService, OrderService]
|
|
})
|
|
export class ImportModule {}
|
|
|