dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_ChatBotModule cluster_ChatBotModule_providers cluster_ChatBotModule_imports PrismaModule PrismaModule ChatBotModule ChatBotModule PrismaModule->ChatBotModule ChatBotService ChatBotService ChatBotService->ChatBotModule ChatService ChatService ChatService->ChatBotModule MessageService MessageService MessageService->ChatBotModule

File

src/chatbot/chatbot.module.ts

import { Module } from "@nestjs/common";
import { ChatBotService } from "./chatbot.service";
import { ChatBotController } from "./chatbot.controller";
import { ChatService } from "./chat.service";
import { MessageService } from "./message.service";
import { PrismaModule } from "../common/prisma/prisma.module";

@Module({
  imports: [PrismaModule],
  controllers: [ChatBotController],
  providers: [ChatBotService, ChatService, MessageService],
})
export class ChatBotModule {}

results matching ""

    No results matching ""