@@ -3,17 +3,21 @@ package com.threegap.bitnagil.di.data
33import com.threegap.bitnagil.data.address.repositoryImpl.AddressRepositoryImpl
44import com.threegap.bitnagil.data.auth.repositoryimpl.AuthRepositoryImpl
55import com.threegap.bitnagil.data.emotion.repositoryImpl.EmotionRepositoryImpl
6+ import com.threegap.bitnagil.data.file.repositoryImpl.FileRepositoryImpl
67import com.threegap.bitnagil.data.onboarding.repositoryImpl.OnBoardingRepositoryImpl
78import com.threegap.bitnagil.data.recommendroutine.repositoryImpl.RecommendRoutineRepositoryImpl
9+ import com.threegap.bitnagil.data.report.repositoryImpl.ReportRepositoryImpl
810import com.threegap.bitnagil.data.routine.repositoryImpl.RoutineRepositoryImpl
911import com.threegap.bitnagil.data.user.repositoryImpl.UserRepositoryImpl
1012import com.threegap.bitnagil.data.version.repositoryImpl.VersionRepositoryImpl
1113import com.threegap.bitnagil.data.writeroutine.repositoryImpl.WriteRoutineRepositoryImpl
1214import com.threegap.bitnagil.domain.address.repository.AddressRepository
1315import com.threegap.bitnagil.domain.auth.repository.AuthRepository
1416import com.threegap.bitnagil.domain.emotion.repository.EmotionRepository
17+ import com.threegap.bitnagil.domain.file.repository.FileRepository
1518import com.threegap.bitnagil.domain.onboarding.repository.OnBoardingRepository
1619import com.threegap.bitnagil.domain.recommendroutine.repository.RecommendRoutineRepository
20+ import com.threegap.bitnagil.domain.report.repository.ReportRepository
1721import com.threegap.bitnagil.domain.routine.repository.RoutineRepository
1822import com.threegap.bitnagil.domain.user.repository.UserRepository
1923import com.threegap.bitnagil.domain.version.repository.VersionRepository
@@ -63,4 +67,12 @@ abstract class RepositoryModule {
6367 @Binds
6468 @Singleton
6569 abstract fun bindAddressRepository (addressRepositoryImpl : AddressRepositoryImpl ): AddressRepository
70+
71+ @Binds
72+ @Singleton
73+ abstract fun bindFileRepository (impl : FileRepositoryImpl ): FileRepository
74+
75+ @Binds
76+ @Singleton
77+ abstract fun bindReportRepository (impl : ReportRepositoryImpl ): ReportRepository
6678}
0 commit comments