Another thing is mentioned MVC bindings. So that y...
# ktor
o
Another thing is mentioned MVC bindings. So that you can write
Copy code
@Path(”/foo”)
class X {
   @GET(”bar”)
   fun PipelineContext<ApplicationCall>.bar() {
       call.respond(…)
   }
}