dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_TestimonialsModule cluster_TestimonialsModule_providers TestimonialsService TestimonialsService TestimonialsModule TestimonialsModule TestimonialsService->TestimonialsModule

File

src/testimonials/testimonials.module.ts

import { Module } from '@nestjs/common';
import { TestimonialsController } from './testimonials.controller';
import { TestimonialsService } from './testimonials.service';
import { TestimonialsEntity } from 'src/database/entity/testimonials-entity/testimonials-entity';
import { TypeOrmModule } from '@nestjs/typeorm';

@Module({
  imports: [TypeOrmModule.forFeature([TestimonialsEntity])],
  controllers: [TestimonialsController],
  providers: [TestimonialsService]
})
export class TestimonialsModule {}

results matching ""

    No results matching ""