zzj37

Results 2 issues of zzj37

For example: ```kotlin data class SomeBean ( val name: String ) class RouterWithDecoder : Kooby({ install(JacksonModule(jacksonObjectMapper())) get("/api/beans") { emptyList() } }) fun main(args: Array) { runApp(args) { mount(RouterWithDecoder()) } }...

question

The following code will generate valid openapi json file: ```kotlin // an extension method that creates some routes fun Kooby.helloRoute() { get("/hello") { "world" } } fun main(args: Array) {...

enhancement
kotlin
openapi