Heya.. wondering if anyone knows of a way to creat...
# ktor
m
Heya.. wondering if anyone knows of a way to create routes with ktor that accept both
GET
or
POST
, so something like:
Copy code
get("/") {
    call.respondText("Hello Ktor!", ContentType.Text.Html)
}
Would work with both