app.module.ts 916 B

1234567891011121314151617181920212223242526272829
  1. import { Module } from '@nestjs/common';
  2. import { ScheduleModule } from '@nestjs/schedule';
  3. import { AppController } from './app.controller';
  4. import { AppService } from './app.service';
  5. import { ConfigService } from './config.service';
  6. import { DatasetsService } from './datasets.service';
  7. import { DbService } from './db.service';
  8. import { EventsGateway } from './events.gateway';
  9. import { HandbrakeService } from './handbrake.service';
  10. import { MaintenanceService } from './maintenance.service';
  11. import { TaskQueueService } from './task-queue.service';
  12. import { WatcherService } from './watcher.service';
  13. @Module({
  14. imports: [ScheduleModule.forRoot()],
  15. controllers: [AppController],
  16. providers: [
  17. AppService,
  18. DbService,
  19. WatcherService,
  20. ConfigService,
  21. MaintenanceService,
  22. HandbrakeService,
  23. DatasetsService,
  24. EventsGateway,
  25. TaskQueueService,
  26. ],
  27. })
  28. export class AppModule {}