Function URLRouter.any
Adds a new route for requests matching the specified pattern, regardless of their HTTP verb.
URLRouter any(Handler)
(
string url_match,
Handler handler
);
URLRouter any
(
string url_match,
@safe void delegate(HTTPServerRequest, HTTPServerResponse) handler
) @safe;