pub mod bidi;
pub mod cdp;
pub mod cli;
pub mod config;
pub mod detect;
pub mod dom;
pub mod errors;
pub mod launch;
pub mod mcp;
pub mod paths;
pub mod registry;
#[cfg(test)]
pub(crate) mod test_support {
use std::sync::Mutex;
pub(crate) static ENV_LOCK: Mutex<()> = Mutex::new(());
}