Updated on 2026-08-14

This commit is contained in:
Tangem 2025-02-05 13:53:44 +05:00
commit 8146119ccd
15 changed files with 204 additions and 3 deletions

View file

@ -30,4 +30,10 @@ internal object PromoDomainModule {
fun provideShouldShowSwapStoriesUseCase(promoRepository: PromoRepository): ShouldShowSwapStoriesUseCase {
return ShouldShowSwapStoriesUseCase(promoRepository)
}
@Provides
@Singleton
fun provideGetStoryContentUseCase(promoRepository: PromoRepository): GetStoryContentUseCase {
return GetStoryContentUseCase(promoRepository)
}
}