import { Module } from '@nestjs/common'; import { ChatGateway } from './chat.gateway.js'; import { ChatController } from './chat.controller.js'; @Module({ controllers: [ChatController], providers: [ChatGateway], }) export class ChatModule {}