``` get("/{*}") { call.respond...
# ktor
h
Copy code
get("/{*}") {
            call.respond("hello")
        }
didn't work for
/
and
/{anything}/{something}
*
matches a single component, exactly one
h
so no way to match all routes? 😞
currently im using this as an alternate
Copy code
get("/") { call.respond("OK") }
        get("/{*}") { call.respond("OK") }
        get("/{*}/{*}") { call.respond("OK") }
        get("/{*}/{*}/{*}") { call.respond("OK") }
n
{path...} works