It would be nice if Ktor could provide a `DslMarke...
# ktor
m
It would be nice if Ktor could provide a
DslMarker
so that we can mix `Application`/`ApplicationCall`/`Route`/`PipelineInterceptor` etc. receivers with our own server setup DSL 🙂
c
We actually have dsl markers, at least for routing
m
Oh right,
Route
has one already 🙂
c
pipeline interceptor doesn't have btw
m
Yeah I confused it with
PipelineContext
Here i’m trying to mix own DSL with Ktor DSL and Kodein DSL 😵 I basically copied all Kodein extension functions to
Application
,
ApplicationCall
etc. manually to make them available in the right context. (And yes, that piece needs refactoring! WIP 😄)