blob: 5844cd4147f9a5a27103026cf3683a4ac7642c45 [file]
import { NestFactory } from '@nestjs/core';
import { QueueModule } from './queue.module';
async function bootstrap() {
const app = await NestFactory.createMicroservice(QueueModule);
await app.listen();
}
bootstrap();