first commit
This commit is contained in:
13
Smartes-Klassenzimmer-Backend/src/chat/chat.module.ts
Normal file
13
Smartes-Klassenzimmer-Backend/src/chat/chat.module.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
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 {}
|
||||
Reference in New Issue
Block a user