Skip to content

Instantly share code, notes, and snippets.

@markchristopherng
Created February 19, 2020 00:49
Show Gist options
  • Save markchristopherng/825e63af3198d07ae33cfc2ad71f6be5 to your computer and use it in GitHub Desktop.
Save markchristopherng/825e63af3198d07ae33cfc2ad71f6be5 to your computer and use it in GitHub Desktop.
val kodeinModule = Kodein.Module(name = "appmodule") {
bind() from singleton { MessageData() }
bind<TimeService>() with singleton { TimeServiceImpl() }
bind<GreetingService>() with singleton {
GreetingServiceImpl(instance(), instance()) }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment