// SPDX-License-Identifier: Apache-2.0
//! CLI-side utilities shared between the OSS `cli` crate and the
//! closed `hosted-client` crate.
//!
//! These items would create a circular dependency if they stayed in
//! `cli` (which depends on `hosted-client` when the `hosted-client`
//! feature is on, and `hosted-client` needs `UserConfig` /
//! `RemoteTarget` / `ClientConfig`). Pulling them out lets both sides
//! resolve cleanly.
pub use ClientConfig;
pub use UserConfig;
pub use ;