changed provideAccountService to provideAccountDAO
This commit is contained in:
parent
18af642f3f
commit
f81132b032
4 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ import dagger.hilt.components.SingletonComponent
|
||||||
@Module
|
@Module
|
||||||
@InstallIn(SingletonComponent::class)
|
@InstallIn(SingletonComponent::class)
|
||||||
abstract class DatabaseModule {
|
abstract class DatabaseModule {
|
||||||
@Binds abstract fun provideAccountService(impl: FirebaseAccountDAO): AccountDAO
|
@Binds abstract fun provideAccountDAO(impl: FirebaseAccountDAO): AccountDAO
|
||||||
|
|
||||||
@Binds abstract fun provideLogService(impl: LogServiceImpl): LogService
|
@Binds abstract fun provideLogService(impl: LogServiceImpl): LogService
|
||||||
|
|
||||||
|
|
Reference in a new issue