generated from AND-SOPT-ANDROID/and-sopt-android-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1f2743f
commit ff8151f
Showing
9 changed files
with
16 additions
and
27 deletions.
There are no files selected for viewing
4 changes: 2 additions & 2 deletions
4
app/src/main/java/org/sopt/and/data/datasource/UserDataSource.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
package org.sopt.and.data.datasource | ||
|
||
import org.sopt.and.data.dto.BaseSuccessResponse | ||
import org.sopt.and.data.dto.BaseResponse | ||
import org.sopt.and.data.dto.request.SignUpRequest | ||
import org.sopt.and.data.dto.response.SignUpResponseDto | ||
import retrofit2.Call | ||
|
||
interface UserDataSource { | ||
fun postSignUp( | ||
request: SignUpRequest | ||
): Call<BaseSuccessResponse<SignUpResponseDto>> | ||
): Call<BaseResponse<SignUpResponseDto>> | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 0 additions & 10 deletions
10
app/src/main/java/org/sopt/and/data/dto/BaseFailureResponse.kt
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
app/src/main/java/org/sopt/and/domain/repository/SignUpRepository.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
package org.sopt.and.domain.repository | ||
|
||
import org.sopt.and.data.dto.BaseSuccessResponse | ||
import org.sopt.and.data.dto.BaseResponse | ||
import org.sopt.and.data.dto.response.SignUpResponseDto | ||
import org.sopt.and.domain.entity.User | ||
import retrofit2.Call | ||
|
||
interface SignUpRepository { | ||
fun registerUser(user: User): Call<BaseSuccessResponse<SignUpResponseDto>> | ||
fun registerUser(user: User): Call<BaseResponse<SignUpResponseDto>> | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters