example of one of my classes using things within t...
# kohesive
a
example of one of my classes using things within the body:
Copy code
class BrowserPluginRecommendRoutes {
    private val LOG: Logger by injectLogger()
    private val JSON: ObjectMapper by injectLazy()
    private val analysisService: OldSchoolRecommender by injectLazy()
    private val statsService: StatsService by injectLazy()
    private val annotationService: AnnotationService by injectLazy()
    private val acctCache: AppDurableDataCache by injectLazy()
    private val acctService: AppDurableDataService by injectLazy()
   ...