Skip to content

Instantly share code, notes, and snippets.

@DenisBronx
Created May 17, 2020 22:45
Show Gist options
  • Save DenisBronx/ea2c050cb9d2350717de869047dac49f to your computer and use it in GitHub Desktop.
Save DenisBronx/ea2c050cb9d2350717de869047dac49f to your computer and use it in GitHub Desktop.
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