Updated on 2026-08-14

This commit is contained in:
Tangem 2026-07-07 13:31:41 +02:00
parent fcfbe7ca92
commit 370d902dad
13 changed files with 138 additions and 5 deletions

View file

@ -0,0 +1,8 @@
package com.tangem.features.promobanners.api.deeplink
interface CampaignsDeepLinkHandler {
interface Factory {
fun create(queryParams: Map<String, String>): CampaignsDeepLinkHandler
}
}