claude_codes/client/
sync.rs

1//! Synchronous client for Claude communication (stub implementation)
2
3use crate::error::Result;
4
5/// Synchronous client for communicating with Claude
6/// This is a stub implementation - will be implemented later with native sync I/O
7pub struct SyncClient;
8
9impl SyncClient {
10    /// Create a new synchronous client with default settings
11    pub fn new() -> Result<Self> {
12        todo!("Implement sync client with native std::process")
13    }
14}