//auth/dev.atick.auth.di/RepositoryModule/bindAuthRepository
bindAuthRepository
[androidJvm]\
@Binds
@Singleton
abstract fun bindAuthRepository(authRepositoryImpl: AuthRepositoryImpl): AuthRepository
Binds the AuthRepositoryImpl implementation to the AuthRepository interface.
Return
An instance of AuthRepository for dependency injection.
Parameters
androidJvm
authRepositoryImpl | The implementation of AuthRepository to be bound. |