Skip to content

Commit

Permalink
[FEATURE] #14 : Domain SignInUseCase 구현
Browse files Browse the repository at this point in the history
  • Loading branch information
jeongjaino committed Oct 5, 2023
1 parent 9ef517d commit a06cbb7
Showing 1 changed file with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package com.wap.wapp.core.domain.auth

import com.wap.wapp.core.data.repository.auth.AuthRepository
import javax.inject.Inject

class SignInUseCase @Inject constructor(
private val repository: AuthRepository
){
suspend operator fun invoke(email: String): Result<String> =
repository.signIn(email)
}

0 comments on commit a06cbb7

Please sign in to comment.