import { Module } from '@nestjs/common';
import { ChatService } from './chat.service';
import { ChatGateway } from './chat.gateway';
import { ModelsModule } from 'src/models/models.module';
import { ChatController } from './chat.controller';
import { ChatAggregations } from './chat.aggregation';

@Module({
    imports: [ModelsModule],
    controllers: [ChatController],
    providers: [ChatGateway, ChatService, ChatAggregations],
    exports: [ChatGateway, ChatService, ChatAggregations]
})
export class ChatModule { }
