running_process_client/lib.rs
1pub mod client;
2pub mod paths;
3pub mod pipe_session;
4pub mod pty_session;
5
6pub use client::{
7 connect_or_start, daemonize_command, launch_detached, ClientError, DaemonClient,
8 SpawnCommandRequest, SpawnedDaemon,
9};
10pub use pipe_session::{PipeSpawnRequest, PipeStreamAttachment, SpawnedPipeSession};
11pub use pty_session::{AttachError, PtyAttachment, PtySpawnRequest, SpawnedPtySession};