1 //! Text I/O.
2 
3 mod input;
4 pub use input::{Input, Key, ScanCode};
5 
6 mod output;
7 pub use output::{Color, Output, OutputMode};
8