dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_AlertModule cluster_AlertModule_imports cluster_AlertModule_exports cluster_AlertModule_providers PrismaModule PrismaModule AlertModule AlertModule PrismaModule->AlertModule AlertService AlertService AlertModule->AlertService AlertService AlertService AlertService->AlertModule

File

src/alert/alert.module.ts

Providers

Controllers

Imports

Exports

import { Module } from "@nestjs/common";
import { PrismaModule } from "../common/prisma/prisma.module";
import { AlertService } from "./alert.service";
import { AlertController } from "./alert.controller";

@Module({
  imports: [PrismaModule],
  providers: [AlertService],
  controllers: [AlertController],
  exports: [AlertService],
})
export class AlertModule {}

results matching ""

    No results matching ""