//! Official Rust SDK for the Anakin web-scraping API.
//!
//! ```no_run
//! use anakin::Client;
//!
//! # async fn run() -> anakin::Result<()> {
//! let client = Client::builder().api_key("ak-...").build()?;
//! let doc = client.scrape("https://example.com").await?;
//! println!("{}", doc.markdown.unwrap_or_default());
//! # Ok(())
//! # }
//! ```
//!
//! Long-running endpoints (`scrape`, `map`, `crawl`, `agentic_search`,
//! `wire`) poll internally — the future resolves with the final result
//! once the job reaches a terminal status.
// descriptive types use rustdoc comments inline
pub use ;
pub use supported_countries;
pub use ;
pub use Sessions;
pub use ;