ulfberht
ulfberht copied to clipboard
🗡️ A small but powerful & opinionated DI library. Written in Kotlin, and powered by annotation processing.
This is an issue to request for direct constructor injection. Currently the @Inject functionality cannot be used on the constructor of a class. Current behaviour: `data class DependencyA ` ```...
A simple case: ```kotlin @Module abstract class MyModule1 { @Provides @IntoSet fun stringOne(): String = "hello" } @Module abstract class MyModule2 { @Provides @IntoSet fun stringTwo(): String = "world!" }...
A simple case: ```kotlin @Module abstract class MyModule1 { @Provides @IntoMap("one") fun stringOne(): String = "hello, " } @Module abstract class MyModule2 { @Provides @IntoMap("two") fun stringTwo(): String = "world!"...