<put-request> ( post-data url -- request )
HTTP client > PUT requests with the HTTP client
Prev:http-put ( post-data url -- response data )


Vocabulary
http.client

Definition
USING: accessors http.client.private kernel ;

IN: http.client

: <put-request> ( post-data url -- request )
"PUT" <client-request> swap >>post-data ;