feat(main): 홈 대화 탭을 추가한다

This commit is contained in:
Yu Sung
2026-07-08 15:54:07 +09:00
parent 403eee262f
commit 09443761af
13 changed files with 938 additions and 23 deletions

View File

@@ -0,0 +1,12 @@
import Foundation
import Combine
import CombineMoya
import Moya
final class MainChatRepository {
private let api = MoyaProvider<MainChatApi>()
func getChatRooms(filter: String, cursor: String?) -> AnyPublisher<Response, MoyaError> {
return api.requestPublisher(.getChatRooms(filter: filter, cursor: cursor))
}
}