import { Module } from '@nestjs/common'; import { ChatService } from './chat.service'; import { ChatGateway } from './chat.gateway'; import { ChatController } from './chat.controller'; import { AuthModule } from '../auth/auth.module'; import { PrismaModule } from '../prisma/prisma.module'; @Module({ imports: [AuthModule, PrismaModule], controllers: [ChatController], providers: [ChatGateway, ChatService], }) export class ChatModule {}