diff --git a/src/chat/chat.module.ts b/src/chat/chat.module.ts index 46719fe..2345555 100644 --- a/src/chat/chat.module.ts +++ b/src/chat/chat.module.ts @@ -4,10 +4,12 @@ import { ChatGateway } from './chat.gateway'; import { JwtModule } from '@nestjs/jwt'; import { ConfigModule, ConfigService } from '@nestjs/config'; import { MessagesModule } from 'src/messages/messages.module'; +import { ConversationsModule } from 'src/conversations/conversations.module'; @Module({ imports: [ MessagesModule, + ConversationsModule, JwtModule.registerAsync({ imports: [ConfigModule], inject: [ConfigService],