Skip to content

Instantly share code, notes, and snippets.

@arnaudgiuliani
Created February 4, 2026 07:42
Show Gist options
  • Select an option

  • Save arnaudgiuliani/0930e472d21b79a861fa2d7c7d277b40 to your computer and use it in GitHub Desktop.

Select an option

Save arnaudgiuliani/0930e472d21b79a861fa2d7c7d277b40 to your computer and use it in GitHub Desktop.
Koin App Module - First DSL
val appModule = module {
    single { Database() }
    single { UserRepository(get()) }
    viewModel { MainViewModel(get()) }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment