오디션 상세 페이지 추가

This commit is contained in:
Yu Sung
2025-01-06 18:31:49 +09:00
parent 3d8817275c
commit 739a9b42b7
12 changed files with 329 additions and 3 deletions

View File

@@ -16,4 +16,8 @@ final class AuditionRepository {
func getAuditionList(page: Int, size: Int) -> AnyPublisher<Response, MoyaError> {
return api.requestPublisher(.getAuditionList(page: page, size: size))
}
func getAuditionDetail(auditionId: Int) -> AnyPublisher<Response, MoyaError> {
return api.requestPublisher(.getAuditionDetail(auditionId: auditionId))
}
}