Updated on 2026-08-14
This commit is contained in:
parent
ad582bfc1a
commit
e79d1c1290
3 changed files with 37 additions and 34 deletions
|
|
@ -0,0 +1,18 @@
|
|||
package com.tangem.tap.di.core.navigation.email
|
||||
|
||||
import com.tangem.core.navigation.email.EmailSender
|
||||
import com.tangem.tap.core.navigation.email.AndroidEmailSender
|
||||
import dagger.Module
|
||||
import dagger.Provides
|
||||
import dagger.hilt.InstallIn
|
||||
import dagger.hilt.components.SingletonComponent
|
||||
import javax.inject.Singleton
|
||||
|
||||
@Module
|
||||
@InstallIn(SingletonComponent::class)
|
||||
internal object EmailSenderModule {
|
||||
|
||||
@Provides
|
||||
@Singleton
|
||||
fun provideEmailSender(): EmailSender = AndroidEmailSender()
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue