feat(chat-room): 채팅 쿼터 구매 기능 추가

This commit is contained in:
Yu Sung
2025-09-04 06:57:02 +09:00
parent 20801bdcfb
commit f98f625200
4 changed files with 82 additions and 1 deletions

View File

@@ -54,4 +54,8 @@ class ChatRoomRepository {
func getChatQuotaStatus() -> AnyPublisher<Response, MoyaError> {
return talkApi.requestPublisher(.getChatQuotaStatus)
}
func purchaseChatQuota() -> AnyPublisher<Response, MoyaError> {
return talkApi.requestPublisher(.purchaseChatQuota(request: ChatQuotaPurchaseRequest()))
}
}