When I `curl <http://localhost:800/status/123>` I ...
# http4k
c
When I
curl <http://localhost:800/status/123>
I get a 404. If i change the route to just be :
Copy code
"/status" meta {
  summary = "get the status"
} bindContract GET to handler
I get a 200 Ok if I
curl <http://localhost:8000/status>
What am I missing?