Skip to content

Instantly share code, notes, and snippets.

@MkhytarMkhoian
Created June 4, 2024 19:48
Show Gist options
  • Save MkhytarMkhoian/49b31745cdb31b8cc651e9f5775b6347 to your computer and use it in GitHub Desktop.
Save MkhytarMkhoian/49b31745cdb31b8cc651e9f5775b6347 to your computer and use it in GitHub Desktop.
class DeeplinkDataRepository(
private val localDataSource: AppDeepLinkLocalDataSource,
) : DeeplinkRepository {
override suspend fun getDeepLink(uri: String): DeepLink {
return localDataSource.getDeepLinkData(uri)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment