Updated on 2026-08-14

This commit is contained in:
Tangem 2025-05-27 19:20:31 +05:00
parent a6bbcf1e10
commit 0de7027fbc
9 changed files with 154 additions and 4 deletions

View file

@ -0,0 +1,10 @@
package com.tangem.features.staking.api.deeplink
import kotlinx.coroutines.CoroutineScope
interface StakingDeepLinkHandler {
interface Factory {
fun create(coroutineScope: CoroutineScope, queryParams: Map<String, String>): StakingDeepLinkHandler
}
}