//! This module provides some modules to work with the terminal screen. Like raw and alternate screen. mod alternate; mod raw; use super::{commands, functions, ScreenManager}; pub use self::alternate::AlternateScreen; pub use self::raw::RawScreen;