Created
May 17, 2020 22:45
-
-
Save DenisBronx/ea2c050cb9d2350717de869047dac49f to your computer and use it in GitHub Desktop.
This file contains hidden or 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
class GetUserUseCaseImpl( | |
private val userRepository: UserRepository | |
) : GetUserUseCase { | |
override fun invoke(): User = userRepository.getUser() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment