apatrida
06/09/2016, 7:11 PMInjekt.registerSingletonFactory { Something() }
val thing: Something = Injekt.get()
class ServiceyThing(val thing: Something = Injekt.get()) { ... }
class ServiceyThingTwo() {
val thing: Something by injectLazy()
}
and so on