Skip to content

Commit

Permalink
[FEATURE] #141 : SignUpDataSource DI Module
Browse files Browse the repository at this point in the history
  • Loading branch information
tgyuuAn committed Feb 27, 2024
1 parent 74409d9 commit 518d18c
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ import com.wap.wapp.core.network.source.attendancestatus.AttendanceStatusDataSou
import com.wap.wapp.core.network.source.attendancestatus.AttendanceStatusDataSourceImpl
import com.wap.wapp.core.network.source.auth.AuthDataSource
import com.wap.wapp.core.network.source.auth.AuthDataSourceImpl
import com.wap.wapp.core.network.source.auth.SignUpDataSource
import com.wap.wapp.core.network.source.auth.SignUpDataSourceImpl
import com.wap.wapp.core.network.source.event.EventDataSource
import com.wap.wapp.core.network.source.event.EventDataSourceImpl
import com.wap.wapp.core.network.source.management.ManagementDataSource
Expand Down Expand Up @@ -73,4 +75,10 @@ abstract class NetworkModule {
abstract fun bindsAttendanceStatusDataSource(
attendanceStatueDataSourceImpl: AttendanceStatusDataSourceImpl,
): AttendanceStatusDataSource

@Binds
@Singleton
abstract fun bindsSignUpDataSource(
signUpDataSourceImpl: SignUpDataSourceImpl,
): SignUpDataSource
}

0 comments on commit 518d18c

Please sign in to comment.