Skip to content

jooby 1.1.3

Choose a tag to compare

@jknack jknack released this 19 Jun 02:02
· 5707 commits to main since this release

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