elifarley
02/23/2018, 2:49 PMval testRoute: RouteBinder<(String) -> HttpHandler> = (
"/echo" / Path.of("name")
bindContract GET)
However, what I need is to have a path parameter in the middle, not only at the end: "/echo" / Path.of("name") / "products" / Path.of("product-id")
, which doesn't work.