Skip to content

Commit

Permalink
[FEAT/#42] 주소값 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
kkk5474096 committed Jul 17, 2023
1 parent 948e234 commit 0893b25
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ import retrofit2.http.Path
import retrofit2.http.Query

interface YelloService {
@GET("/api/v1/yello")
@GET("api/v1/vote")
suspend fun getMyYelloList(
@Query("page") page: Int
): BaseResponse<ResponseMyYello>

@GET("/api/v1/yello/{id}/name")
@GET("api/v1/vote/{id}")
suspend fun getYelloDetail(
@Path("id") id: Long
): BaseResponse<ResponseYelloDetail>
Expand Down

0 comments on commit 0893b25

Please sign in to comment.