dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_SheetModule cluster_SheetModule_exports cluster_SheetModule_providers SheetService SheetService SheetModule SheetModule SheetModule->SheetService SheetService SheetService SheetService->SheetModule

File

src/module/sheet/sheet.module.ts

Providers

Controllers

Exports

import { MikroOrmModule } from '@mikro-orm/nestjs';
import { Module } from '@nestjs/common';
import { Sheet } from '../../database/entities/sheet.entity';
import { SheetController } from './sheet.controller';
import { SheetService } from './sheet.service';

@Module({
    imports: [MikroOrmModule.forFeature([Sheet])],
    controllers: [SheetController],
    providers: [SheetService],
    exports: [SheetService],
})
export class SheetModule {}

results matching ""

    No results matching ""