dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_ShortTestModule cluster_ShortTestModule_providers cluster_ShortTestModule_exports ShortTestService ShortTestService ShortTestModule ShortTestModule ShortTestModule->ShortTestService ShortTestService ShortTestService ShortTestService->ShortTestModule

File

src/module/short-test/short-test.module.ts

Providers

Controllers

import { Module } from '@nestjs/common';
import { ShortTestService } from './short-test.service';
import { ShortTestController } from './short-test.controller';
import { MikroOrmModule } from '@mikro-orm/nestjs';
import { ShortTest } from '../../database/entities/shorttest.entity';

@Module({
    imports: [MikroOrmModule.forFeature([ShortTest])],
    providers: [ShortTestService],
    exports: [ShortTestService],
    controllers: [ShortTestController],
})
export class ShortTestModule {}

results matching ""

    No results matching ""