Updated on 2026-08-14

This commit is contained in:
Tangem 2026-03-20 09:39:36 +01:00
parent 8ca7bc0ca7
commit ebe571aa16
30 changed files with 17 additions and 3177 deletions

View file

@ -0,0 +1,8 @@
package com.tangem.features.feed.entry.deeplink
interface MarketsDeepLinkHandler {
interface Factory {
fun create(): MarketsDeepLinkHandler
}
}

View file

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