We have ```inline fun <reified T : Any> Modu...
# koin
e
We have
Copy code
inline fun <reified T : Any> Module.retrofitApiOf(qualifier: Qualifier? = null): KoinDefinition<T> = factory<T>(qualifier) {
    get<Retrofit>(named(APP))
        .create(T::class.java)
}
I wonder how I can convert it for something compile check graph check with koin compiler plugin
a
good question 🙂 👍
e
I still a bit confused with dsl - if use factory dsl but I write by hand object installation in it - does it recorded for later graph verification?
Also since I started gradual migration - is it possible to check gradle modules that I converted already or I need really go over all process first
a
You mean partial compile safety? you would need distinct entry point. I'm working on such case for now. DSL is not easy to detect at compile time.
e
Clear, we have all in app only