Skip to content

Commit

Permalink
[Delete/#9] 반환 타입에서 Response 객체 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
gaeun5744 committed Jun 26, 2023
1 parent 5b807ae commit a40d3ea
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
package org.android.go.sopt.remote.domain

import org.android.go.sopt.remote.remoteData.model.ResponseListUsersDto
import retrofit2.Response

interface MainPageRepo {

suspend fun getUserList():Response<ResponseListUsersDto>
}
suspend fun getUserList(): ResponseListUsersDto
}

0 comments on commit a40d3ea

Please sign in to comment.