Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save alz-ahm/05398be096eae9d10c51efa0f8afec88 to your computer and use it in GitHub Desktop.
Save alz-ahm/05398be096eae9d10c51efa0f8afec88 to your computer and use it in GitHub Desktop.
class ClassA {
var classB: ClassB
@Inject constructor(classB: ClassB){
this.classB = classB
}
}
class ClassB {
var classC: ClassC
@Inject constructor(classC: ClassC){
this.classC = classC
}
}
class ClassC {
@Inject constructor(){
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment