I suspect this is a dumb question, but I can’t see...
# javalin
b
I suspect this is a dumb question, but I can’t seem to find the answer in the docs. If I have a group of routes, how can I nest those routes under a common path? I was thinking it would be:
Copy code
path("top/level/path") {
    routes {
        get("/hello") { ... }
        post("/world") { ... }
    }
}
where I want to access
/hello
via
/top/level/path/hello
, but this doesn’t seem to be working. Am I missing something?