feat(chat-talk): 톡 목록 조회 API 연동 및 목록 UI 구성

This commit is contained in:
Yu Sung
2025-08-29 22:25:12 +09:00
parent 4dd1866169
commit 6afe04048f
6 changed files with 251 additions and 9 deletions

View File

@@ -0,0 +1,19 @@
//
// TalkRepository.swift
// SodaLive
//
// Created by klaus on 8/29/25.
//
import Foundation
import CombineMoya
import Combine
import Moya
class TalkRepository {
private let api = MoyaProvider<TalkApi>()
func getTalkRooms() -> AnyPublisher<Response, MoyaError> {
return api.requestPublisher(.getTalkRooms)
}
}