31 lines
No EOL
564 B
Kotlin
31 lines
No EOL
564 B
Kotlin
package com.tangem.di
|
|
|
|
import com.tangem.ui.dialog.WaitSecurityDelayDialogNew
|
|
|
|
import javax.inject.Singleton
|
|
|
|
import dagger.Module
|
|
import dagger.Provides
|
|
|
|
@Module
|
|
internal class NavigatorModule {
|
|
|
|
@Singleton
|
|
@Provides
|
|
fun provideNavigator(): Navigator {
|
|
return Navigator()
|
|
}
|
|
|
|
@Singleton
|
|
@Provides
|
|
fun provideToastHelper(): ToastHelper {
|
|
return ToastHelper()
|
|
}
|
|
|
|
@Singleton
|
|
@Provides
|
|
fun provideWaitSecurityDelayDialogNew(): WaitSecurityDelayDialogNew {
|
|
return WaitSecurityDelayDialogNew()
|
|
}
|
|
|
|
} |