Skip to content

Commit

Permalink
refactor/#9: postSignUp 코루틴으로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
youjin09222 committed May 24, 2024
1 parent 2a37968 commit d4cec71
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/src/main/java/com/sopt/now/test/data/AuthService.kt
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ import retrofit2.http.POST

interface AuthService {
@POST("member/join")
fun postSignUp(
@Body request: RequestSignUpDto,
): Call<ResponseAuthDto>
suspend fun postSignUp(
@Body request: RequestSignUpDto
): ResponseAuthDto

@POST("member/login")
fun postLogin(
Expand Down

0 comments on commit d4cec71

Please sign in to comment.