Files
socktop-swipe/src/lib.rs
T

13 lines
335 B
Rust
Raw Normal View History

//! socktop-swipe: swipe between terminal dashboards on a touchscreen.
//!
//! The binary is a thin CLI over these modules. They are public so the
//! integration tests can drive a real tmux session without a touch panel.
pub mod config;
pub mod control;
pub mod doctor;
pub mod grid;
pub mod input;
pub mod monitor;
pub mod session;