minicrossterm/src/common/screen/mod.rs

9 lines
250 B
Rust
Raw Normal View History

2018-07-30 05:30:09 +10:00
//! This module provides some modules to work with the terminal screen. Like raw and alternate screen.
mod raw;
mod alternate;
use super::{ScreenManager, functions, commands};
pub use self::raw::RawScreen;
pub use self::alternate::AlternateScreen;