feat: implement support chat functionality with new module, service, controller, DTOs, and schema updates.
This commit is contained in:
12
src/support-chat/support-chat.module.ts
Normal file
12
src/support-chat/support-chat.module.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
import { Module } from '@nestjs/common';
|
||||
import { SupportChatController } from './support-chat.controller';
|
||||
import { SupportChatService } from './support-chat.service';
|
||||
import { PrismaModule } from '../prisma/prisma.module';
|
||||
|
||||
@Module({
|
||||
imports: [PrismaModule],
|
||||
controllers: [SupportChatController],
|
||||
providers: [SupportChatService],
|
||||
exports: [SupportChatService],
|
||||
})
|
||||
export class SupportChatModule {}
|
||||
Reference in New Issue
Block a user