<@U81RS1P4H> it is in the normal routing, but not ...
# http4k
d
@scap it is in the normal routing, but not in the contract routing. For instance, you can do this:
Copy code
val app = routes(
        "/bob/{name:.*}" bind GET to { Response(OK).body("you GET " + it.path("name")) }
    )

    println(app(Request(GET, "/bob/this/is/a/great/idea")))