Updated on 2026-08-14

This commit is contained in:
Tangem 2025-05-27 18:04:27 +05:00
parent 7868e94865
commit 1a0eaa779a
7 changed files with 77 additions and 3 deletions

View file

@ -268,4 +268,14 @@ internal object WalletsDomainModule {
walletsRepository = walletsRepository,
)
}
@Provides
@Singleton
fun providesGetIsNotificationsEnabledUseCase(
walletsRepository: WalletsRepository,
): GetIsNotificationsEnabledUseCase {
return GetIsNotificationsEnabledUseCase(
walletsRepository = walletsRepository,
)
}
}