remove context from networker creation call

This commit is contained in:
Satindar Dhillon
2022-09-26 11:38:17 -07:00
parent 9a4c8a6886
commit 4cfa99e063

View File

@ -21,8 +21,5 @@ object AppModule {
@Singleton
@Provides
fun provideNetworker(
@ApplicationContext app: Context,
datastore: DatastoreRepository
): Networker = Networker(datastore)
fun provideNetworker(datastore: DatastoreRepository) = Networker(datastore)
}