Skip to content

Instantly share code, notes, and snippets.

@MkhytarMkhoian
Created June 5, 2024 19:16
Show Gist options
  • Save MkhytarMkhoian/daa1c59cc795488441c9ab14614ee6cc to your computer and use it in GitHub Desktop.
Save MkhytarMkhoian/daa1c59cc795488441c9ab14614ee6cc to your computer and use it in GitHub Desktop.
class GetDynamicLinkUseCase(
private val dynamicLinkRepository: DynamicLinkRepository,
) {
suspend operator fun invoke(uri: String): String? {
return dynamicLinkRepository.parseLink(uri)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment