omnyssh_core/lib.rs
1//! OmnySSH core — the frontend-agnostic engine.
2//!
3//! Hosts the SSH engine, configuration handling, domain events, and the
4//! self-updater. Frontends (the `omnyssh` TUI today, others later) depend on
5//! this crate and never the other way around: nothing here may depend on
6//! terminal-rendering, input, or CLI crates.
7
8pub mod config;
9pub mod event;
10pub mod ssh;
11pub mod update;
12pub mod utils;