Skip to content

Instantly share code, notes, and snippets.

@Rasalexman
Created June 24, 2019 20:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Rasalexman/04c506d90160376d811fa2cf41a1c7af to your computer and use it in GitHub Desktop.
Save Rasalexman/04c506d90160376d811fa2cf41a1c7af to your computer and use it in GitHub Desktop.
val databaseModule = Kodein.Module("database_module") {
bind<IGenresDao>() with provider { instance<MoviesDatabase>().getGenresDao() }
bind<IMoviesDao>() with provider { instance<MoviesDatabase>().getMoviesDao() }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment