콘텐츠 메인 시리즈 탭

- 완결 시리즈 전체보기 추가
This commit is contained in:
Yu Sung
2025-02-22 08:29:02 +09:00
parent fac5fe9a84
commit 58258078c3
7 changed files with 184 additions and 2 deletions

View File

@@ -24,4 +24,8 @@ final class ContentMainTabSeriesRepository {
func getRecommendSeriesByCreator(creatorId: Int) -> AnyPublisher<Response, MoyaError> {
return api.requestPublisher(.getRecommendSeriesByCreator(creatorId: creatorId))
}
func getCompletedSeries(page: Int, size: Int) -> AnyPublisher<Response, MoyaError> {
return api.requestPublisher(.getCompletedSeries(page: page, size: size))
}
}