umbra-tui 0.1.0

** Umbra TUI Framework: a simple yet highly configurable framework to generate flexible and fast TUIs **
Documentation
//! # Umbra TUI Framework
//! > *A simple yet highly configurable framework to generate flexible and fast TUIs*
//!
//! ## Example
//!
//! ```rust,no_run
//! use umbra::{IEvent, Umbra};
//!
//! // NOTE: Umbra assumes that it will be responsible for
//! // setting up the screen and raw mode
//! let mut umbra: Umbra = Umbra::new().expect("Umbra error: {0}");
//! umbra.init().expect("Panic... umbra initialization failed");
//!
//! loop {
//!     match umbra.read_event().unwrap() {
//!         IEvent::Key(key) => print!("Key {:?}", key),
//!         IEvent::Paste(s) => print!("Paste {0}", s),
//!         IEvent::FocusGained => print!("Window gained focus"),
//!         IEvent::FocusLost => print!("Window lost focus"),
//!     }
//!     umbra.refresh();
//! }
//!
//! ```
mod umbra;
pub use umbra::{UResult, Umbra};

mod terminal;
pub use terminal::IEvent;