13 lines
335 B
Rust
13 lines
335 B
Rust
|
|
//! 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;
|