feat(chat-character): 추천 캐릭터 섹션 추가 및 새로고침 API 반영

This commit is contained in:
Yu Sung
2025-11-14 01:46:07 +09:00
parent 2c74bb743b
commit 74212405a4
5 changed files with 96 additions and 1 deletions

View File

@@ -16,4 +16,8 @@ class CharacterRepository {
func getCharacterMain() -> AnyPublisher<Response, MoyaError> {
return api.requestPublisher(.getCharacterHome)
}
func refreshRecommendCharacters() -> AnyPublisher<Response, MoyaError> {
return api.requestPublisher(.refreshRecommendCharacters)
}
}