1//! Client module for Claude communication
2//!
3//! This module provides both synchronous and asynchronous clients
4//! for interacting with Claude via the JSON protocol.
56pub mod r#async;
7pub mod sync;
89pub use r#async::AsyncClient;
10pub use sync::SyncClient;