feat: 상단에 최근 공지사항 표시

This commit is contained in:
Yu Sung
2025-07-28 20:02:54 +09:00
parent b20a6cb0f6
commit 7d22a29517
4 changed files with 62 additions and 13 deletions

View File

@@ -17,5 +17,9 @@ final class NoticeRepository {
func getNotices() -> AnyPublisher<Response, MoyaError> {
return api.requestPublisher(.getNotices)
}
func getLatestNotice() -> AnyPublisher<Response, MoyaError> {
return api.requestPublisher(.getLatestNotice)
}
}