Files
stack/apps/gateway/src/chat/chat.module.ts
2026-03-13 01:33:32 +00:00

10 lines
247 B
TypeScript

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 {}