Updated on 2026-08-14

This commit is contained in:
Tangem 2026-05-20 12:19:43 +03:00
parent 4578bb824e
commit 0979d1b71b
22 changed files with 565 additions and 0 deletions

View file

@ -0,0 +1,40 @@
package com.tangem.tap.di.domain
import com.tangem.domain.pushnotificationpreferences.ObserveWalletPushNotificationPreferencesUseCase
import com.tangem.domain.pushnotificationpreferences.PreloadWalletPushNotificationPreferencesUseCase
import com.tangem.domain.pushnotificationpreferences.UpdateWalletPushNotificationPreferenceUseCase
import com.tangem.domain.pushnotificationpreferences.repository.WalletPushNotificationPreferencesRepository
import dagger.Module
import dagger.Provides
import dagger.hilt.InstallIn
import dagger.hilt.components.SingletonComponent
import javax.inject.Singleton
@Module
@InstallIn(SingletonComponent::class)
internal object PushNotificationPreferencesDomainModule {
@Provides
@Singleton
fun providesPreloadWalletPushNotificationPreferencesUseCase(
repository: WalletPushNotificationPreferencesRepository,
): PreloadWalletPushNotificationPreferencesUseCase {
return PreloadWalletPushNotificationPreferencesUseCase(repository = repository)
}
@Provides
@Singleton
fun providesObserveWalletPushNotificationPreferencesUseCase(
repository: WalletPushNotificationPreferencesRepository,
): ObserveWalletPushNotificationPreferencesUseCase {
return ObserveWalletPushNotificationPreferencesUseCase(repository = repository)
}
@Provides
@Singleton
fun providesUpdateWalletPushNotificationPreferenceUseCase(
repository: WalletPushNotificationPreferencesRepository,
): UpdateWalletPushNotificationPreferenceUseCase {
return UpdateWalletPushNotificationPreferenceUseCase(repository = repository)
}
}