Hey guys. I’m rewriting my Spring app in ktor and ...
# ktor
б
Hey guys. I’m rewriting my Spring app in ktor and I’m curious how to bind a function to multiple rows. My Spring code:
Copy code
@PostMapping(value = ["success", "pending"])
fun successOrPending(request: WebRequest): String {
}