You can use `handle`. Something like this: ``` ...
# ktor
m
You can use
handle
. Something like this:
Copy code
route("/ping") {
            handle {
                call.respond("42")
            }
        }