dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_TestimonialModule cluster_TestimonialModule_exports cluster_TestimonialModule_providers TestimonialConfig TestimonialConfig TestimonialService TestimonialService TestimonialModule TestimonialModule TestimonialModule->TestimonialConfig TestimonialModule->TestimonialService TestimonialConfig TestimonialConfig TestimonialConfig->TestimonialModule TestimonialService TestimonialService TestimonialService->TestimonialModule

File

apps/recallassess/recallassess-api/src/api/admin/testimonial/testimonial.module.ts

import { BNestPrismaModule } from "@bish-nest/core/services/database/prisma/prisma.module";
import { Module } from "@nestjs/common";
import { TestimonialConfig } from "./config/testimonial-config.service";
import { TestimonialController } from "./testimonial.controller";
import { TestimonialService } from "./testimonial.service";

@Module({
  imports: [BNestPrismaModule],
  controllers: [TestimonialController],
  providers: [TestimonialService, TestimonialConfig],
  exports: [TestimonialService, TestimonialConfig],
})
export class TestimonialModule {}

results matching ""

    No results matching ""