Redis – NestJS – Can't resolve queue?
I am following doc to start to use queue. I installed @nestjs/bull, bull, @types/bull dependencies. And here is my app.module.ts: @Module({ imports: [ ConfigModule.forRoot({ load: [configuration], }), BullModule.registerQueue({ name: 'create_checkin', redis: { host: 'localhost', port: 6379, }, }), EventModule, ],…