//! Meshbrow Rust SDK — Managed Browser Fleet for AI Agents.
//!
//! ```rust,no_run
//! use meshbrow::Client;
//!
//! #[tokio::main]
//! async fn main() -> Result<(), meshbrow::Error> {
//! let client = Client::new("your-api-key");
//! let session = client.create_session(None).await?;
//! client.navigate(&session.id, "https://example.com", None).await?;
//! client.destroy_session(&session.id, false).await?;
//! Ok(())
//! }
//! ```
pub use Client;
pub use Error;
pub use *;