minicrossterm/src/common/mod.rs
Timon f068ae69b1
Cleanup (#45)
* Removed lots of Clippy warnings and `ran cargo fmt`
2018-11-21 17:48:22 +01:00

14 lines
256 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 TerminalOutput;