Skip to content

Instantly share code, notes, and snippets.

@chiragthummar
Created December 23, 2023 10:19
Show Gist options
  • Save chiragthummar/ea23396c49b0c7f16aedd6946c09ef4f to your computer and use it in GitHub Desktop.
Save chiragthummar/ea23396c49b0c7f16aedd6946c09ef4f to your computer and use it in GitHub Desktop.
@Module
@InstallIn(SingletonComponent::class)
abstract class RepositoryModule {
@Binds
@Singleton
abstract fun bindImageRepository(
imageRepositoryImpl: ImageRepositoryImpl
): ImageRepository
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment