heddle-cli 0.2.0

An AI-native version control system
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// SPDX-License-Identifier: Apache-2.0
//! Heddle protocol client.
//!
//! Connects to Heddle servers for push, pull, and other operations.

pub mod local_daemon;
pub mod local_sync;

pub use cli_shared::ClientConfig;
#[cfg(feature = "weft-client")]
pub use weft_client::HostedGrpcClient;
#[cfg(unix)]
pub use local_daemon::{
    LocalDaemonChannel, connect_local_daemon_channel, detect_local_daemon_with_connect_probe,
};
pub use local_daemon::{UdsTarget, detect_local_daemon};
pub use local_sync::LocalSync;