dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_ScheinexamModule cluster_ScheinexamModule_exports cluster_ScheinexamModule_providers ScheinexamService ScheinexamService ScheinexamModule ScheinexamModule ScheinexamModule->ScheinexamService ScheinexamService ScheinexamService ScheinexamService->ScheinexamModule

File

src/module/scheinexam/scheinexam.module.ts

import { MikroOrmModule } from '@mikro-orm/nestjs';
import { Module } from '@nestjs/common';
import { Scheinexam } from '../../database/entities/scheinexam.entity';
import { ScheinexamController } from './scheinexam.controller';
import { ScheinexamService } from './scheinexam.service';

@Module({
    imports: [MikroOrmModule.forFeature([Scheinexam])],
    controllers: [ScheinexamController],
    providers: [ScheinexamService],
    exports: [ScheinexamService],
})
export class ScheinexamModule {}

results matching ""

    No results matching ""