Created
June 4, 2024 19:33
-
-
Save MkhytarMkhoian/c4b1ad2b772fe12cff78d03ddf85b16e to your computer and use it in GitHub Desktop.
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
class GetDeeplinkUseCase( | |
private val deeplinkRepository: DeeplinkRepository, | |
) { | |
suspend operator fun invoke(uri: String): DeepLink { | |
val deepLink = deeplinkRepository.getDeepLink(parsedUri) | |
return deepLink | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment