Skip to content

Commit

Permalink
chore #13: edit DataSourceModule function naming
Browse files Browse the repository at this point in the history
  • Loading branch information
hyeeum committed Dec 6, 2024
1 parent ce45e9e commit 374274f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/main/java/org/sopt/and/data/di/DataSourceModule.kt
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ import javax.inject.Singleton
internal abstract class DataSourceModule {
@Binds
@Singleton
abstract fun bindsDataSource(authDataSourceImpl: AuthDataSourceImpl): AuthDataSource
abstract fun bindsAuthDataSource(authDataSourceImpl: AuthDataSourceImpl): AuthDataSource

@Binds
@Singleton
abstract fun myDataSource(MyDataSourceImpl: MyDataSourceImpl): MyDataSource
abstract fun bindsMyDataSource(MyDataSourceImpl: MyDataSourceImpl): MyDataSource
}

0 comments on commit 374274f

Please sign in to comment.