Skip to main content

wsx_core/runtime/
mod.rs

1//! Stable wsx daemon domain and local protocol.
2//!
3//! The types in this module are provider-neutral. Terminal emulators, agent
4//! vendors, and executable plugins implement these contracts without becoming
5//! the workspace model.
6
7mod client;
8mod domain;
9mod protocol;
10mod review;
11
12pub use client::{
13    ensure_available, ensure_background_available, new_client_id, recover_daemon, Availability,
14    Client, EventMonitor, EventSignal, TerminalStream,
15};
16pub use domain::*;
17pub use protocol::*;
18pub use review::*;