Skip to content

Instantly share code, notes, and snippets.

@saurabharora90
Created June 15, 2020 05:06
Show Gist options
  • Save saurabharora90/709f5d68e3d221db327253220dd3a801 to your computer and use it in GitHub Desktop.
Save saurabharora90/709f5d68e3d221db327253220dd3a801 to your computer and use it in GitHub Desktop.
class CustomerCareInitializer @Inject constructor(
private val session: UserSession,
private val apiService: ApiService
) : ModuleInitializer {
override fun initialize(context: Context): Completable {
....
}
override fun dependencies(): List<Class<out ModuleInitializer>> {
return listOf(SubscriptionInitializer::class.java)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment