post

Post requests are used to send data to the server.

Example

router
    .post("/", my_handler) // Matches only POST requests for the '/' route
    .post("/users", my_handler2) // Matches only POST requests for the '/users' route