Updated on 2026-08-14
This commit is contained in:
parent
6e2ad61589
commit
84153dd63b
7 changed files with 52 additions and 21 deletions
|
|
@ -3,6 +3,7 @@ package com.tangem.tap.di.domain
|
|||
import com.tangem.domain.hotwallet.CheckHotWalletUpgradeBannerUseCase
|
||||
import com.tangem.domain.hotwallet.CloseHotWalletUpgradeBannerUseCase
|
||||
import com.tangem.domain.hotwallet.GetAccessCodeSkippedUseCase
|
||||
import com.tangem.domain.hotwallet.GetUpgradeBannerClosureTimestampUseCase
|
||||
import com.tangem.domain.hotwallet.IsHotWalletCreationSupported
|
||||
import com.tangem.domain.hotwallet.IsAccessCodeSimpleUseCase
|
||||
import com.tangem.domain.hotwallet.SetAccessCodeSkippedUseCase
|
||||
|
|
@ -67,4 +68,12 @@ internal object HotWalletDomainModule {
|
|||
): ShouldShowUpgradeHotWalletBannerUseCase {
|
||||
return ShouldShowUpgradeHotWalletBannerUseCase(hotWalletRepository)
|
||||
}
|
||||
|
||||
@Provides
|
||||
@Singleton
|
||||
fun provideGetUpgradeBannerClosureTimestampUseCase(
|
||||
hotWalletRepository: HotWalletRepository,
|
||||
): GetUpgradeBannerClosureTimestampUseCase {
|
||||
return GetUpgradeBannerClosureTimestampUseCase(hotWalletRepository)
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue