Skip to content

Instantly share code, notes, and snippets.

@MkhytarMkhoian
Created June 4, 2024 19:33
Show Gist options
  • Save MkhytarMkhoian/c4b1ad2b772fe12cff78d03ddf85b16e to your computer and use it in GitHub Desktop.
Save MkhytarMkhoian/c4b1ad2b772fe12cff78d03ddf85b16e to your computer and use it in GitHub Desktop.
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