data class HelloWorld(val hello: String) routing ...
# ktor
c
data class HelloWorld(val hello: String) routing { post("/route") { val helloWorld = call.receive<HelloWorld>() } }