Skip to content

Commit

Permalink
feat/#9: FriendService 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
youjin09222 committed May 8, 2024
1 parent a3964d5 commit 96abc70
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions app/src/main/java/com/sopt/now/test/data/FriendService.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package com.sopt.now.test.data

import com.sopt.now.test.data.dto.response.ResponseFriendDto
import retrofit2.Call
import retrofit2.http.GET
import retrofit2.http.Query

interface FriendService {
@GET("users")
fun friendInfo(
@Query("page") page: Int,
): Call<ResponseFriendDto>
}

0 comments on commit 96abc70

Please sign in to comment.