wsx-core 0.24.0

Composable project, Git worktree, terminal runtime, hook, and model primitives for wsx.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Stable wsx daemon domain and local protocol.
//!
//! The types in this module are provider-neutral. Terminal emulators, agent
//! vendors, and executable plugins implement these contracts without becoming
//! the workspace model.

mod client;
mod domain;
mod protocol;
mod review;

pub use client::{
    ensure_available, ensure_background_available, new_client_id, recover_daemon, Availability,
    Client, EventMonitor, EventSignal, TerminalStream,
};
pub use domain::*;
pub use protocol::*;
pub use review::*;