Skip to content

Commit

Permalink
feat: 공고 저장 api 함수 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
kang9366 committed Nov 23, 2023
1 parent 3ae5103 commit b488e18
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,12 @@ internal class DetailRepositoryImpl @Inject constructor(
override suspend fun getIntermediatorReview(intermediaryId: Long): List<BookmarkResponseItem> {
return api.getIntermediatorReview(intermediaryId)
}

override suspend fun postBookmark(postId: Long) {
api.postBookmark(postId)
}

override suspend fun deleteBookmark(postId: Long) {
api.deleteBookmark(postId)
}
}

0 comments on commit b488e18

Please sign in to comment.