Function URLRouter.post
Adds a new route for POST requests matching the specified pattern.
URLRouter post(Handler)
(
string url_match,
Handler handler
)
if (isValidHandler!Handler);
URLRouter post
(
string url_match,
@safe void delegate(HTTPServerRequest, HTTPServerResponse) handler
) @safe;