Updated on 2026-08-14

This commit is contained in:
Tangem 2025-06-11 17:08:27 +05:00
parent 27cf7b963b
commit 8dc9304c06
12 changed files with 176 additions and 15 deletions

View file

@ -2,9 +2,9 @@ package com.tangem.features.send.v2.api.deeplink
import kotlinx.coroutines.CoroutineScope
interface SellDeepLinkHandler {
interface SellRedirectDeepLinkHandler {
interface Factory {
fun create(coroutineScope: CoroutineScope, queryParams: Map<String, String>): SellDeepLinkHandler
fun create(coroutineScope: CoroutineScope, queryParams: Map<String, String>): SellRedirectDeepLinkHandler
}
}