Tristan Caron
orangy
get("/path") { // This scope is running in a coroutine I guess delay(1000) { call.respondText("OK") } }
val job = Job() get("/run") { call.respondText("OK") if (job.children.count() > 0) return@get launch(job) { v6RunWorkflow(settings) } }
A modern programming language that makes developers happier.