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