//! Demonstrates `simple_get` — a one-shot GET that returns the body as bytes.
//!
//! Run with:
//! ```text
//! cargo run -p gosub_sonar --example simple_fetch -- https://example.org
//! cargo run -p gosub_sonar --example simple_fetch -- file:///etc/hostname
//! ```
use simple_get;
use Url;
async