Updated on 2026-08-14

This commit is contained in:
Tangem 2024-11-15 17:12:02 +05:00
parent 3bac111c2b
commit 854b04624d
24 changed files with 486 additions and 90 deletions

View file

@ -47,4 +47,10 @@ internal object OnrampDomainModule {
fun provideCheckOnrampAvailabilityUseCase(onrampRepository: OnrampRepository): CheckOnrampAvailabilityUseCase {
return CheckOnrampAvailabilityUseCase(onrampRepository)
}
@Provides
@Singleton
fun provideGetOnrampCurrencyUseCase(onrampRepository: OnrampRepository): GetOnrampCurrencyUseCase {
return GetOnrampCurrencyUseCase(onrampRepository)
}
}