I would like to be able to use path patterns like ` .get("/**") ` or ` .get("/?**) ` or most flexible : ``` .match(context=>{ // custom matcher here which can access headers, query string parameters, url from the context }) ``` would this be hard to add ?