dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_NotificationModule cluster_NotificationModule_exports cluster_NotificationModule_providers cluster_NotificationModule_imports EmailModule EmailModule NotificationModule NotificationModule EmailModule->NotificationModule PrismaModule PrismaModule PrismaModule->NotificationModule TemporalModule TemporalModule TemporalModule->NotificationModule NotificationService NotificationService NotificationModule->NotificationService NotificationService NotificationService NotificationService->NotificationModule

File

src/notification/notification.module.ts

import { Module } from "@nestjs/common";
import { NotificationService } from "./notification.service";
import { PrismaModule } from "../common/prisma/prisma.module";
import { NotificationController } from "./notification.controller";
import { TemporalModule } from "../providers/temporal/temporal.module";
import { EmailModule } from "../providers/email/email.module";

@Module({
  imports: [PrismaModule, TemporalModule, EmailModule],
  providers: [NotificationService],
  controllers: [NotificationController],
  exports: [NotificationService],
})
export class NotificationModule {}

results matching ""

    No results matching ""