omnyssh_core/ssh/mod.rs
1/// SSH client, session management, SFTP and metrics collection.
2///
3/// A native russh client powers metrics collection, SFTP, and the
4/// multi-session terminal emulator, plus Smart Server Context with service
5/// discovery and Auto SSH Key Setup for secure authentication.
6pub mod client;
7pub mod discovery;
8pub mod key_setup;
9pub mod metrics;
10pub mod pool;
11pub mod probe;
12pub mod pty;
13pub mod services;
14pub mod session;
15pub mod sftp;