The router path handling should be updated to allow users to match routes by prefix. So if the user calls:
router.add_route("/users/", &my_handler);
It should return the handler for any request with a path that starts with /users/. This will be especially useful for GET, PUT, and DELETE, where the path often ends with an identifier.
The router path handling should be updated to allow users to match routes by prefix. So if the user calls:
router.add_route("/users/", &my_handler);It should return the handler for any request with a path that starts with
/users/. This will be especially useful forGET,PUT, andDELETE, where the path often ends with an identifier.