MVP is Gone

This commit is contained in:
Hemanth S 2020-07-21 00:35:48 +05:30
parent f0663c2b43
commit 17a66450d4
30 changed files with 341 additions and 582 deletions

View file

@ -0,0 +1,11 @@
package code.name.monkey.retromusic.providers
import org.eclipse.egit.github.core.Repository
import org.koin.dsl.bind
import org.koin.dsl.module
val provideModules = module {
single {
RepositoryImpl(get())
} bind Repository::class
}