I am struggling to migrate from hilt to kotlin-inj...
# kotlin-inject
s
I am struggling to migrate from hilt to kotlin-inject. Could anyone help with converting the sample hilt code to kotlin-inject hilt
Copy code
@Module
@InstallIn(SingletonComponent::class)
class RepoModule {
    @Provides
    @Singleton
    fun provideRepo(
        remoteDataSource: UserRemoteDataSource,
        localDataSource: UserLocalDataSource
    ): UserRepo =
        UserRepoImpl(
            remoteDataSource,
            localDataSource
        )
}