detached-shell 0.1.4

Noras.tech's minimalist detachable shell solution · zero configuration · not a complex multiplexer, just persistent sessions
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Module declarations
pub mod clients;
pub mod info;
pub mod session;

#[cfg(test)]
mod test;

// Re-export commonly used items for convenience
pub use session::{
    handle_attach_session, handle_clean_sessions, handle_kill_sessions, handle_new_session,
    handle_rename_session,
};

pub use clients::{handle_disconnect_client, handle_list_clients};
pub use info::{handle_list_sessions, handle_session_history, handle_session_info};