Skip to content

Commit

Permalink
[Chore/#79] 서비스 네이밍 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
yeoncheong committed Jul 18, 2023
1 parent 5e0948f commit ed8829b
Showing 1 changed file with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
package com.sopt.umbba_android.data.service

interface OnBoardingService {
import com.sopt.umbba_android.data.model.request.InviteCodeRequestDto
import com.sopt.umbba_android.data.model.response.InviteCodeResponseDto
import retrofit2.http.Body
import retrofit2.http.PATCH

interface OnboardingService {
@PATCH("/onboard/match")
suspend fun setFamily(
@Body body: InviteCodeRequestDto
): InviteCodeResponseDto
}

0 comments on commit ed8829b

Please sign in to comment.