diff --git a/backend/src/post/post.service.ts b/backend/src/post/post.service.ts index 2f435a9..8953977 100644 --- a/backend/src/post/post.service.ts +++ b/backend/src/post/post.service.ts @@ -2,7 +2,7 @@ import { Injectable } from '@nestjs/common'; import { InjectRepository } from '@nestjs/typeorm'; import { Repository } from 'typeorm'; import { Post } from './post.entity'; -import { Comment } from './comment.entity'; +import { Comment } from '../comment/comment.entity'; @Injectable() export class PostService {