phantom/lib.rs
1//! # Phantom Editor
2//! > *A simple yet complex, shadow fast, rust text editor, to run in the shadows*
3//!
4//! ## Example
5//!
6//! ```rust,no_run
7//! use phantom::{Phantom, PResult};
8//!
9//! let mut phantom: Phantom = Phantom::new().expect("Phantom error: {0}");
10//! phantom.run().expect("Panic... phantom run failed");
11//!
12//! ```
13mod buffer;
14mod document;
15mod input;
16mod log;
17mod screen;
18mod terminal;
19
20mod phantom;
21pub use phantom::{PResult, Phantom};