Updated on 2026-08-14

This commit is contained in:
Tangem 2026-06-22 10:22:31 +02:00
parent bbf2b14479
commit 8eb46c9672
2 changed files with 1 additions and 7 deletions

View file

@ -11,7 +11,6 @@ import com.tangem.datasource.utils.KotlinxDataStoreSerializer
import com.tangem.domain.addressbook.crypto.AddressBookCipher
import com.tangem.domain.addressbook.repository.AddressBookRepository
import com.tangem.domain.addressbook.time.IsoTimestampProvider
import com.tangem.domain.addressbook.usecase.GetContactsUseCase
import com.tangem.domain.common.wallets.UserWalletsListRepository
import com.tangem.utils.coroutines.AppCoroutineScope
import com.tangem.utils.coroutines.CoroutineDispatcherProvider
@ -66,9 +65,4 @@ internal object AddressBookDataModule {
dispatchers = dispatchers,
)
}
@Provides
@Singleton
fun provideGetContactsUseCase(repository: AddressBookRepository): GetContactsUseCase =
GetContactsUseCase(repository)
}