Updated on 2026-08-14

This commit is contained in:
Tangem 2025-12-03 13:42:03 +04:00
parent f9369de36a
commit 448a472832
7 changed files with 164 additions and 40 deletions

View file

@ -189,4 +189,14 @@ internal object YieldSupplyDomainModule {
dispatcherProvider = dispatcherProvider,
)
}
@Provides
@Singleton
fun provideYieldSupplyEnterStatusUseCase(
yieldSupplyRepository: YieldSupplyRepository,
): YieldSupplyEnterStatusUseCase {
return YieldSupplyEnterStatusUseCase(
yieldSupplyRepository = yieldSupplyRepository,
)
}
}