Skip to content

Commit f5063d7

Browse files
committed
[FEAT/#378] AuthRepositoryImpl 함수명 수정
1 parent 6b1310a commit f5063d7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

data/auth/src/main/java/com/terning/data/auth/repositoryimpl/AuthRepositoryImpl.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class AuthRepositoryImpl @Inject constructor(
1616
private val authDataSource: AuthDataSource
1717
) : AuthRepository {
1818

19-
override suspend fun postSignIn(
19+
override suspend fun signIn(
2020
authorization: String,
2121
request: SignInRequest
2222
): Result<SignInResponse> = runCatching {
@@ -26,7 +26,7 @@ class AuthRepositoryImpl @Inject constructor(
2626
).result.toSignInResponse()
2727
}
2828

29-
override suspend fun postSignUp(
29+
override suspend fun signUp(
3030
authId: String,
3131
request: SignUpRequest
3232
): Result<SignUpResponse> = runCatching {

0 commit comments

Comments
 (0)