jooby 1.1.3
Minor release with lot of Kotlin enhancements:
- Make Kooby extensible (useful for unit or integration tests):
class App: Kooby({
get {
"Love kotlin"
}
})- Reified version of param, header and body:
get {
val str = param<String>("name")
val intval = param<Int>("name")
val type = param<MyType>("x")
}Full list of changes available here