Skip to content

Commit

Permalink
fix: import feature QueueModule in example app
Browse files Browse the repository at this point in the history
  • Loading branch information
tahubu committed Oct 16, 2020
1 parent 67e931e commit 902e594
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions example/src/modules/user/user.module.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
import { Module } from '@nestjs/common';
import { QueueModule } from '@team-supercharge/nest-amqp';

import { UserController } from './user.controller';
import { UserListener } from './user.listener';

@Module({
controllers: [UserController],
providers: [UserListener],
imports: [QueueModule.forFeature()],
})
export class UserModule {}

0 comments on commit 902e594

Please sign in to comment.