All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ratpack.kotlin.handling.KHandlers.kt Maven / Gradle / Ivy

There is a newer version: 1.10.3
Show newest version
package ratpack.kotlin.handling

import ratpack.handling.Handler

object KHandlers {
    inline fun from(crossinline cb: KContext.(KContext) -> Unit) : Handler = { ctx: KContext -> ctx.cb(ctx) } as Handler
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy