Updated on 2026-08-14

This commit is contained in:
Tangem 2025-05-16 12:25:37 +05:00
parent db1d205bae
commit cb1ede0531
5 changed files with 116 additions and 0 deletions

View file

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