Regarding what <@U1JP5M6LU> was talking about. Is ...
# ktor
m
Regarding what @spand was talking about. Is it possible to call
rounting {...}
from multiple modules in some way? I get "Conflicting application feature is already installed"
o
Good question, can you file an issue please? It could use existing installed feature when needed.
Like change it like this
Copy code
fun Application.routing(configure: Routing.() -> Unit) = featureOrNull(Routing)?.apply(configure) ?: install(Routing, configure)
Hmm, I think I will just commit and push it 🙂
makes sense
thanks!
m
Hehe. Fast as always. Thanks
o
pushed
👍 1