monitor_input/lib.rs
1//! This crate contains a command line tool and its library
2//! to change input sources of display monitors with [DDC/CI].
3//!
4//! * The [`Cli`] struct provides the command line tool.
5//! * The [`Monitor`] struct provides functions to
6//! change input sources of display monitors.
7//!
8//! [DDC/CI]: https://en.wikipedia.org/wiki/Display_Data_Channel
9mod cli;
10pub use cli::*;
11
12mod input_source;
13pub use input_source::*;
14
15mod monitor;
16pub use monitor::*;