import { NestFactory } from '@nestjs/core'; import { WorkerModule } from './worker.module'; async function bootstrap() { const app = await NestFactory.createApplicationContext(WorkerModule); app.enableShutdownHooks(); console.log('[Worker] BullMQ workers started — waiting for jobs'); } bootstrap();