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.
25 lines
933 B
25 lines
933 B
import { AccountModule } from '@ghostfolio/api/app/account/account.module';
|
|
import { OrderModule } from '@ghostfolio/api/app/order/order.module';
|
|
import { TransformDataSourceInRequestModule } from '@ghostfolio/api/interceptors/transform-data-source-in-request/transform-data-source-in-request.module';
|
|
import { ApiModule } from '@ghostfolio/api/services/api/api.module';
|
|
import { MarketDataModule } from '@ghostfolio/api/services/market-data/market-data.module';
|
|
import { TagModule } from '@ghostfolio/api/services/tag/tag.module';
|
|
|
|
import { Module } from '@nestjs/common';
|
|
|
|
import { ExportController } from './export.controller';
|
|
import { ExportService } from './export.service';
|
|
|
|
@Module({
|
|
controllers: [ExportController],
|
|
imports: [
|
|
AccountModule,
|
|
ApiModule,
|
|
MarketDataModule,
|
|
OrderModule,
|
|
TagModule,
|
|
TransformDataSourceInRequestModule
|
|
],
|
|
providers: [ExportService]
|
|
})
|
|
export class ExportModule {}
|
|
|