shell-tunnel 0.4.0

Ultra-lightweight remote shell gateway with a REST/WebSocket API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Session management module.
//!
//! This module provides types and utilities for managing shell sessions,
//! including session identification, state tracking, and storage.

mod context;
mod id;
mod state;
mod store;

pub use context::{SessionContext, StateProbe};
pub use id::SessionId;
pub use state::SessionState;
pub use store::{Session, SessionConfig, SessionStore};