Hi. I'm trying to write a reverse proxy example (https://github.com/http-rs/tide/pull/784), but I don't know how to route all possible paths. Consider the following example: ```rust app.at("*") ... ; ``` now, take a look this tests below: ```bash curl http://localhost:8080/test ok curl http://localhost:8080/ 404 curl http://localhost:8080 404 ``` Well, since wildcard allows anything, it should return `ok` in ` ` and `/` too. 😕 Thank you!