import { NestFactory } from '@nestjs/core'; import { AppModule } from './app/app.module'; import { MicroserviceOptions } from '@nestjs/microservices'; import { BullMqServer } from '@gitroom/nestjs-libraries/bull-mq-transport-new/strategy'; async function bootstrap() { // some comment again const app = await NestFactory.createMicroservice( AppModule, { strategy: new BullMqServer(), } ); await app.listen(); } bootstrap();