-
-
Save GuilhE/39f1dea3088db794f457b17f9ac5eaf1 to your computer and use it in GitHub Desktop.
Medium articles - KMM with MVI+FSM
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
expect fun platformModule(): Module | |
object DependencyInjection { | |
fun initKoin(appDeclaration: KoinAppDeclaration) { | |
startKoin { | |
appDeclaration() | |
modules(commonModule(), platformModule()) | |
} | |
} | |
internal fun commonModule() = module { ... } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment