dify_client/
http.rs

1//! This module re-exports some common items most developers need from the [reqwest](https://docs.rs/reqwest) crate.
2//!
3//! The re-exported items include:
4//! - `header`: Types and functions for working with HTTP headers.
5//! - `multipart`: Types and functions for working with multipart requests.
6//! - `Method`: An enum representing HTTP methods.
7//! - `Request`: A builder for making HTTP requests.
8//! - `Response`: A response to an HTTP request.
9//!
10//! This module is intended to provide a convenient way to access commonly used items from the reqwest crate.
11pub use reqwest::{header, multipart, Method, Request, Response};