get

Function get 

Source
pub fn get<U: Into<String>>(url: U) -> Request<Flawless>
Expand description

Create a GET request.

use flawless_http::get;

let response = get("https://httpbin.org/get").send();
assert!(response.is_ok());