tinyget 1.0.1

Tiny HTTP(S) GET
Documentation
1
2
3
4
5
6
fn main() -> Result<(), tinyget::Error> {
    let response = tinyget::get("https://httpbin.org/anything").send()?;
    let hello = response.as_str()?;
    println!("{}", hello);
    Ok(())
}