pub fn post<U: Into<String>>(url: U) -> Request<Flawless>
Create a POST request.
use flawless_http::post; let response = post("https://httpbin.org/post").send(); assert!(response.is_ok());