
io.javalin.plugin.openapi.dsl.DocumentedHandler.kt Maven / Gradle / Ivy
The newest version!
package io.javalin.plugin.openapi.dsl
import io.javalin.http.Context
import io.javalin.http.Handler
open class DocumentedHandler(
val documentation: OpenApiDocumentation,
private val handler: Handler
) : Handler {
override fun handle(ctx: Context) = handler.handle(ctx)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy