Skip to content

Instantly share code, notes, and snippets.

@juliuscanute
Created July 4, 2019 00:58
Show Gist options
  • Save juliuscanute/0addba8d2c629b1e8ae5f55868ed9dc1 to your computer and use it in GitHub Desktop.
Save juliuscanute/0addba8d2c629b1e8ae5f55868ed9dc1 to your computer and use it in GitHub Desktop.
Dependency Injection
object Startup {
var dictionary: Module = module(override = true) {
single { ... }
}
init {
injectDependencies()
}
}
fun injectDependencies() {
startKoin { modules(Startup.dictionary) }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment