diff --git a/productivity/goals/backend/entities/goal.entity.ts b/productivity/goals/backend/entities/goal.entity.ts index b1ae10f..b22f7e0 100644 --- a/productivity/goals/backend/entities/goal.entity.ts +++ b/productivity/goals/backend/entities/goal.entity.ts @@ -1,7 +1,7 @@ import { Column, Entity, Index, JoinColumn, ManyToOne, OneToMany } from 'typeorm'; import { BaseEntity } from '@lilith/typeorm-entities'; -import { Domain } from '@features/domains/backend/entities/domain.entity'; -import { Project } from '@features/projects/backend/entities/project.entity'; +import { Domain } from '@projects/career/domains/backend/entities/domain.entity'; +import { Project } from '@projects/productivity/projects/backend/entities/project.entity'; @Entity('goals') @Index('idx_goals_domain_id', ['domainId'])