put method
Register a PUT request handler.
Shorthand for calling register with the method set to "PUT".
Implementation
void put(String path, RequestHandler handler) {
register("PUT", path, handler);
}
Register a PUT request handler.
Shorthand for calling register with the method set to "PUT".
void put(String path, RequestHandler handler) {
register("PUT", path, handler);
}