Skip to content

Instantly share code, notes, and snippets.

@Farhandroid
Created March 11, 2022 17:11
Show Gist options
  • Select an option

  • Save Farhandroid/0321ce0d244cd8863eff2e36a2301700 to your computer and use it in GitHub Desktop.

Select an option

Save Farhandroid/0321ce0d244cd8863eff2e36a2301700 to your computer and use it in GitHub Desktop.
RepositoryModule
@Module
@InstallIn(SingletonComponent::class)
object RepositoryModule {
@Provides
fun provideImageRepository(imageApiService: ImageApiService): ImageRepository {
return ImageRepository(imageApiService)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment