All files / libs/assignments/plans/core/src/legacy plan-assignments.module.ts

100% Statements 26/26
100% Branches 0/0
100% Functions 0/0
100% Lines 26/26

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 271x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x  
import { Module } from '@nestjs/common';
import { CqrsModule } from '@nestjs/cqrs';
import { TypeOrmModule } from '@nestjs/typeorm';
 
import { PlanAssignment } from '@amalia/core/models';
import { DesignerModule } from '@amalia/payout-definition/designer/core';
import { UsersModule } from '@amalia/tenants/users/core';
 
import { PlanAssignmentCoreModule } from '../lib/plan-assignment.core-module';
 
import { PlansAssignmentsController } from './plan-assignments.controller';
import { PlansAssignmentsService } from './plan-assignments.service';
 
@Module({
  imports: [
    TypeOrmModule.forFeature([PlanAssignment]),
    CqrsModule,
    UsersModule,
    DesignerModule,
    PlanAssignmentCoreModule,
  ],
  controllers: [PlansAssignmentsController],
  providers: [PlansAssignmentsService],
  exports: [PlansAssignmentsService],
})
export class PlansAssignmentsModule {}