Module dify_client::http
source · Expand description
This module re-exports some common items most developers need from the reqwest crate.
The re-exported items include:
header: Types and functions for working with HTTP headers.multipart: Types and functions for working with multipart requests.Method: An enum representing HTTP methods.Request: A builder for making HTTP requests.Response: A response to an HTTP request.
This module is intended to provide a convenient way to access commonly used items from the reqwest crate.
Modules§
- HTTP header types
- multipart/form-data
Structs§
- The Request Method (VERB)
- A request which can be executed with
Client::execute(). - A Response to a submitted
Request.