Hamza
07/25/2019, 4:10 PMget("/{*}") {
call.respond("hello")
}
didn't work for / and /{anything}/{something}cy
07/25/2019, 5:03 PMcy
07/25/2019, 5:04 PM* matches a single component, exactly oneHamza
07/26/2019, 12:20 AMHamza
07/26/2019, 3:06 AMget("/") { call.respond("OK") }
get("/{*}") { call.respond("OK") }
get("/{*}/{*}") { call.respond("OK") }
get("/{*}/{*}/{*}") { call.respond("OK") }Nicholas DeLello
08/01/2019, 11:40 PM