dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_CommentModule cluster_CommentModule_providers cluster_CommentModule_exports cluster_CommentModule_imports TitlesModule TitlesModule CommentModule CommentModule TitlesModule->CommentModule CommentService CommentService CommentModule->CommentService CommentService CommentService CommentService->CommentModule

File

src/comment/comment.module.ts

Providers

Controllers

Imports

Exports

import { Module } from '@nestjs/common';
import { CommentService } from './providers/comment.service';
import { CommentController } from './comment.controller';
import { TypeOrmModule } from '@nestjs/typeorm';
import { Comment } from './comment.entity';
import { TitlesModule } from 'src/titles/titles.module';

@Module({
  imports: [TypeOrmModule.forFeature([Comment]), TitlesModule],
  providers: [CommentService],
  controllers: [CommentController],
  exports: [CommentService],
})
export class CommentModule {}

results matching ""

    No results matching ""