claude_codes/client/
mod.rs

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.
5
6pub mod r#async;
7pub mod sync;
8
9pub use r#async::AsyncClient;
10pub use sync::SyncClient;