meshbrow/lib.rs
1//! Meshbrow Rust SDK — Managed Browser Fleet for AI Agents.
2//!
3//! ```rust,no_run
4//! use meshbrow::Client;
5//!
6//! #[tokio::main]
7//! async fn main() -> Result<(), meshbrow::Error> {
8//! let client = Client::new("your-api-key");
9//! let session = client.create_session(None).await?;
10//! client.navigate(&session.id, "https://example.com", None).await?;
11//! client.destroy_session(&session.id, false).await?;
12//! Ok(())
13//! }
14//! ```
15
16mod client;
17mod error;
18mod types;
19
20pub use client::Client;
21pub use error::Error;
22pub use types::*;