scopes.kt 219 B

1234567891011
  1. package com.mrozon.healthdiary.di
  2. import javax.inject.Scope
  3. @Scope
  4. @Retention(AnnotationRetention.RUNTIME)
  5. annotation class ActivityScope
  6. @Scope
  7. @Retention(AnnotationRetention.RUNTIME)
  8. annotation class FragmentScope