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