I'm trying to create a `ContractRoutingHttpHandler...
# http4k
s
I'm trying to create a
ContractRoutingHttpHandler
in which there are two routes with different sets of filters. How can I do it without losing OpenApi doc generation?
Copy code
contract {
    renderer = ....
    descriptionPath = ....

    routes += route1
    routes += route2
}
How can I give
route1
and
route2
different sets of filters? They are both instances of
ContractRoute