If I have a HTTPHandler and I want to add another ...
# http4k
c
If I have a HTTPHandler and I want to add another RoutingHttpHandler to it, how would I go about it? I've tried doing:
Copy code
routes(
    "/" bind existing,
    "/more" bind static(...)
)
but this doesn't work In this case
/more
work, but nothing from
existing