print module
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
import { Module } from '@nestjs/common';
|
||||
import { PrintService } from './print.service';
|
||||
import { PrintController } from './print.controller';
|
||||
import { MikroOrmModule } from '@mikro-orm/nestjs';
|
||||
import { Field } from './entities/field.entity';
|
||||
import { Section } from './entities/section.entity';
|
||||
import { FieldOption } from './entities/field-option.entity';
|
||||
|
||||
@Module({
|
||||
controllers: [PrintController],
|
||||
providers: [PrintService],
|
||||
imports: [MikroOrmModule.forFeature([Field, Section, FieldOption])]
|
||||
})
|
||||
export class PrintModule { }
|
||||
Reference in New Issue
Block a user