// // ContentPlaylistListRepository.swift // SodaLive // // Created by klaus on 12/7/24. // import CombineMoya import Combine import Moya class ContentPlaylistListRepository { private let api = MoyaProvider() func getPlaylistList() -> AnyPublisher { return api.requestPublisher(.getPlaylistList) } }