omnyssh 1.0.0

TUI SSH dashboard & server manager
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/// SSH client, session management, SFTP and metrics collection.
///
/// Supports system SSH for interactive sessions, native russh client for
/// metrics collection, PTY-backed multi-session terminal emulator,
/// Smart Server Context with service discovery, and Auto SSH Key Setup
/// for secure authentication.
pub mod client;
pub mod discovery;
pub mod key_setup;
pub mod metrics;
pub mod pool;
pub mod probe;
pub mod pty;
pub mod services;
pub mod session;
pub mod sftp;