dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_GenreModule cluster_GenreModule_exports cluster_GenreModule_providers GenreService GenreService GenreModule GenreModule GenreModule->GenreService GenreService GenreService GenreService->GenreModule

File

src/genre/genre.module.ts

Providers

Controllers

Exports

import { Module } from '@nestjs/common';
import { GenreController } from './genre.controller';
import { GenreService } from './providers/genre.service';
import { TypeOrmModule } from '@nestjs/typeorm';
import { Genre } from './genre.entity';

@Module({
  controllers: [GenreController],
  providers: [GenreService],
  imports: [TypeOrmModule.forFeature([Genre])],
  exports: [GenreService],
})
export class GenreModule {}

results matching ""

    No results matching ""