Skip to content

Commit

Permalink
[feat] : domain 영역 ReqresRepository 추가(현재는 의미 없음)
Browse files Browse the repository at this point in the history
  • Loading branch information
chanubc committed Jan 2, 2024
1 parent 8843f98 commit 494c87f
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ package org.sopt.dosopttemplate.domain.repository

import org.sopt.dosopttemplate.domain.entity.ReqresEntity

/*ReqresRepository 인터페이스는 도메인(Domain) 레이어에서 사용되며,
원격 데이터 소스(ReqresDataSource)로부터 Reqres 사용자 리스트를 가져오는 기능을 정의*/
interface ReqresRepository {
suspend fun getReqresList(page: Int): Result<List<ReqresEntity>>
}

0 comments on commit 494c87f

Please sign in to comment.