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