13 lines
408 B
TypeScript
13 lines
408 B
TypeScript
|
|
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 {}
|