Skip to content

Commit

Permalink
[FEAT/#128] git merge conflict 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Roel4990 committed Jan 22, 2025
1 parent d0ddaae commit d08e022
Showing 1 changed file with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,14 @@ class PostRemoteDataSourceImpl @Inject constructor(
) : PostRemoteDataSource {
override suspend fun getPostData(postId: Int, userId: Int): BaseResponse<GetPostResponseDto> =
postService.getPost(userId = userId, postId = postId)
override suspend fun postAddMapData(postId: Int, userId: Int): BaseResponse<Boolean> =
postService.postAddMapPost(
PostAddMapRequestDto(postId = postId, userId = userId)
)
override suspend fun getPostData(postId: Int, userId: Int): BaseResponse<GetPostResponseDto> =
postService.getPost(userId = userId, postId = postId)

override suspend fun postScoopPost(postId: Int, userId: Int): BaseResponse<Boolean> =
postService.postScoopPost(
PostScoopRequestDto(postId = postId, userId = userId)
)

override suspend fun postAddMapData(postId: Int, userId: Int): BaseResponse<Boolean> =
postService.postAddMapPost(
PostAddMapRequestDto(postId = postId, userId = userId)
)
}

0 comments on commit d08e022

Please sign in to comment.