omnyssh 1.0.0

TUI SSH dashboard & server manager
1
2
3
4
5
6
7
8
9
10
11
12
13
//! OmnySSH library — public API exposed for integration tests.
//!
//! The binary entry point lives in `main.rs`. This lib target re-exports the
//! internal modules so that files under `tests/` can reach them.

#![allow(dead_code)]

pub mod app;
pub mod config;
pub mod event;
pub mod ssh;
pub mod ui;
pub mod utils;