12 lines
326 B
TypeScript
12 lines
326 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { ChatService } from './chat.service';
|
|
import { ChatController } from './chat.controller';
|
|
import { ChatGateway } from './chat.gateway';
|
|
|
|
@Module({
|
|
providers: [ChatService, ChatGateway],
|
|
controllers: [ChatController],
|
|
exports: [ChatService],
|
|
})
|
|
export class ChatModule {}
|