minicrossterm/src/common/mod.rs
2018-08-19 23:14:45 +02:00

14 lines
266 B
Rust

//! This module contains some code that can be used for all module in this library.
#[macro_use]
pub mod macros;
pub mod commands;
pub mod functions;
pub mod screen;
pub mod traits;
mod crossterm;
pub use self::crossterm::Crossterm;
use {Screen, TerminalOutput};