bolot
08/10/2017, 2:33 AMdata class Who(val name: String, val planet: String)
fun Application.main() {
install(DefaultHeaders)
install(CallLogging)
install(GsonSupport)
install(Routing) {
get("/") {
val doktor = Who("Doktor", "Gallifrey")
call.respond(doktor)
}
}
}