Hi! How to accept any routing path?
# ktor
a
Hi! How to accept any routing path?
z
get("{...}") { /* ... */ }
c
the other solution is
Copy code
routing {
    handle {
    }
}