15 lines
546 B
TypeScript
15 lines
546 B
TypeScript
import { DataGatheringModule } from '@ghostfolio/api/services/queues/data-gathering/data-gathering.module';
|
|
import { PortfolioSnapshotQueueModule } from '@ghostfolio/api/services/queues/portfolio-snapshot/portfolio-snapshot.module';
|
|
|
|
import { Module } from '@nestjs/common';
|
|
|
|
import { QueueController } from './queue.controller';
|
|
import { QueueService } from './queue.service';
|
|
|
|
@Module({
|
|
controllers: [QueueController],
|
|
imports: [DataGatheringModule, PortfolioSnapshotQueueModule],
|
|
providers: [QueueService]
|
|
})
|
|
export class QueueModule {}
|